Debark
…because it strips logs 🤣
Methods
There are two methods provided:
AllowDebug
Determines whether debugging is allowed
For example;
import { AllowDebug } from 'debark';
if (AllowDebug()) console.log('I am allowed to log');
StripLogs
Prevents console logging unless specifically requested
For example;
import { StripLogs } from 'debark';
StripLogs();
How it works
The StripLogs
method uses the AllowDebug
method under the hood.
AllowDebug
expects a DEBUG
value in the process.env
s. If one is not found, or exists and is any value other than true
(BOOLEAN) or true
(String), AllowDebug
returns false and all logs are noop
ed.
How to run your application with debugging switched "on"
DEBUG=true npm start