1.1.0 • Published 2 years ago
hoofprint v1.1.0
Hoofprint
A simple Node.js logger.
Installation
Simply install with any of the available package managers:
$ npm install hoofprint # or...
$ yarn add hoofprint
Usage
Import it, and create a Hoofprint
instance:
const Hoofprint = require("hoofprint");
const logger = new Hoofprint();
logger.info("Normal message");
logger.warn("Warning message");
logger.error("Error message");
logger.debug("Debug message");
License
This project is licensed under the MIT license.