https://github.com/bestikk/bestikk-log
A simple console logger for your Node build scripts.
https://github.com/bestikk/bestikk-log
build-tool javascript logging
Last synced: 10 months ago
JSON representation
A simple console logger for your Node build scripts.
- Host: GitHub
- URL: https://github.com/bestikk/bestikk-log
- Owner: bestikk
- License: mit
- Created: 2016-09-25T13:16:23.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2022-03-26T22:56:59.000Z (over 4 years ago)
- Last Synced: 2025-07-13T07:49:06.560Z (12 months ago)
- Topics: build-tool, javascript, logging
- Language: JavaScript
- Homepage:
- Size: 680 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bestikk Log
[](https://www.npmjs.org/package/bestikk-log)
[](https://github.com/bestikk/bestikk-log/actions?query=workflow%3ABuild)
A simple console logger for your Node build scripts.
## Install
$ npm i --save-dev bestikk-log
## Usage
```javascript
import * as log from 'bestikk-log'
log.debug('So far, so good.')
log.info('Heads up')
log.warn('Warning!')
log.error('Oh snap!')
log.success('Well done!')
log.task('Compiling the universe')
log.transform('Uglify', 'index.js', 'index.min.js')
```