Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ybiquitous/ybiq
😎 Useful command-line tools for Node.js project
https://github.com/ybiquitous/ybiq
cli nodejs npm utility
Last synced: 2 months 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 (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T04:24:01.000Z (9 months ago)
- Last Synced: 2024-04-14T05:57:18.540Z (9 months 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
[![npm](https://img.shields.io/npm/v/ybiq.svg)](https://www.npmjs.com/package/ybiq)
[![node](https://img.shields.io/node/v/ybiq.svg)](https://github.com/ybiquitous/ybiq)
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](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),
});
```