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

https://github.com/tool3/clider

cli template
https://github.com/tool3/clider

cli javascript npm template yargs

Last synced: 2 months ago
JSON representation

cli template

Awesome Lists containing this project

README

          

# clider
[![Build Status](https://travis-ci.org/tool3/clider.svg?branch=master)](https://travis-ci.org/tool3/clider) ![lint](https://github.com/tool3/clider/workflows/lint/badge.svg)
a simple cli template

# usage
simply click `Use this template` and your'e good !

# what's in the box
- `yargs`
- `eslint`
- `husky`
- `mocha`
- `chai`
- `github actions` for `lint` and `test`

# after
once you created a repository using this template, use the following steps:
* update and rename `package.json`
* add `"bin"` section to `package.json`:
```json
"bin": {
name_of_cli: "./index.js"
}
```