https://github.com/ybiquitous/ybiq
😎 Useful command-line tools for Node.js project
https://github.com/ybiquitous/ybiq
cli nodejs npm utility
Last synced: over 1 year ago
JSON representation
😎 Useful command-line tools for Node.js project
- Host: GitHub
- URL: https://github.com/ybiquitous/ybiq
- Owner: ybiquitous
- License: mit
- Created: 2017-08-29T13:58:28.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T04:24:01.000Z (over 2 years ago)
- Last Synced: 2024-04-14T05:57:18.540Z (over 2 years ago)
- Topics: cli, nodejs, npm, utility
- Language: JavaScript
- Homepage: https://npm.im/ybiq
- Size: 7.39 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/ybiq)
[](https://github.com/ybiquitous/ybiq)
[](https://conventionalcommits.org)
# ybiq
Useful command-line tools for Node.js project.
## Install
```sh
npm install --save-dev ybiq
```
## Usage
### CLI
Show the help for details:
```sh
ybiq --help
```
#### `ybiq init`
The `ybiq init` command sets up an npm project.
### API
You also can use this package programmatically.
```js
import { init } from "ybiq";
init({
// Default options
// cwd: process.cwd(),
// logger: msg => process.stdout.write(msg),
});
```