lub-api
An api collection of lub packages to export.
Install
npm install lub-api --save
Usage
lub-api
export a object with all utils of lubjs.
const { log, npm } = require('lub-api');
const logger = log('scope');
logger.info('hello, world');
npm.installSync();
API
lub-api
- command - A base command class to help develop your lub-plugin
- helper - contains some utils under lub-command
- fs - contains several useful file-system functions to help create your plugin
- log - A log util to format your log outputs
- npm - several useful utils to help operate npm bin
PR Welcome
PRs are welcomed if you have useful utils during creating plugins.