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
- Host: GitHub
- URL: https://github.com/telkomdev/geny
- Owner: telkomdev
- Created: 2019-07-27T17:15:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-30T12:02:10.000Z (about 6 years ago)
- Last Synced: 2025-01-16T20:19:08.528Z (about 1 year ago)
- Topics: cli, cli-app, example, nodejs
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```