Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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),
});
```