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

https://github.com/telkomdev/geny

Project template for creating CLI App using NodeJs
https://github.com/telkomdev/geny

cli cli-app example nodejs

Last synced: 11 months ago
JSON representation

Project template for creating CLI App using NodeJs

Awesome Lists containing this project

README

          

### Geny

Project template for creating CLI App with `Nodejs`

#### Development mode

The npm link command allow us to locally ‘symlink a package folder’, and for our needs, it will locally install any command listed in the bin field of our package.json.

The npm link command is used from within the NodeJS package directory we want to symlink:

```shell
$ npm link
```

to uninstall
```shell
$ npm unlink
```

Now we can executed from anywhere

```shell
$ geny
```