Skip to content

😎 Useful command-line tools for Node.js project

License

Notifications You must be signed in to change notification settings

ybiquitous/ybiq

Repository files navigation

ybiq

npm node Build Status MIT License Conventional Commits

Useful command-line tools for Node.js project.

Install

npm install ybiq --save-dev

Or if you don't need optional dependencies (e.g. eslint-config-ybiquitous), it's recommended to use --no-optional option.

npm install ybiq --save-dev --no-optional

Usage

CLI

For details, please show help.

ybiq --help

init

Setup npm project.

ybiq init

Programmatic API

const ybiq = require("ybiq");

ybiq.init({
  // Default options
  // cwd: process.cwd(),
  // logger: msg => process.stdout.write(msg),
});