https://github.com/nukeop/super-simple-log
Extremely simple console logger utility
https://github.com/nukeop/super-simple-log
Last synced: about 1 year ago
JSON representation
Extremely simple console logger utility
- Host: GitHub
- URL: https://github.com/nukeop/super-simple-log
- Owner: nukeop
- License: agpl-3.0
- Created: 2018-06-02T22:40:38.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T21:52:00.000Z (about 8 years ago)
- Last Synced: 2025-06-06T21:47:26.250Z (about 1 year ago)
- Language: JavaScript
- Size: 45.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# super-simple-log [](https://travis-ci.org/nukeop/super-simple-log)
> Extremely simple console logger utility
## Installation
```shell
$ npm install --save super-simple-log
```
## Usage
```javascript
const log = require('super-simple-log');
log.info('Info message');
// prints "ℹ INFO - 03-06-2018 13:19:24 - Info message"
log.success('Success message');
// prints "✔ SUCCESS - 03-06-2018 13:19:24 - Success message"
```
## About
### License
Copyright © 2018, [nukeop](https://github.com/nukeop).
Released under the [Affero GPL 3.0 License](LICENSE).