An easy approach to file logging!
I designed this library with ease of use in mind.
Run the command: npm install nano-file-logger
The time logged is automatically written to a file.
// Import the library const FileLogger = require('file-logger'); // Init the logger const log = new FileLogger('log.txt'); // Simply use the logger log.add('Hello world!'); // Retreive the log log.retrieve(); // This function will return an array with all the logs in a file ## Output Format Timestamp - Message