strlog
v0.0.5
Published
strlog is an asynchronous stream file logger
Readme
strlog
strlog is an asynchronous stream file logger
Installation
npm install strlogAPI
strlog has 2 call
- constructor(path: string, oncomplete)
- log(message: string);
Example
const STRLOG = require("strlog");
var logger = STRLOG.logger("log base folder");
logger.log("some message");