https://github.com/minsithu/nell
command line tool for running command files
https://github.com/minsithu/nell
Last synced: 3 months ago
JSON representation
command line tool for running command files
- Host: GitHub
- URL: https://github.com/minsithu/nell
- Owner: MinSiThu
- License: mit
- Created: 2020-02-05T13:34:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T02:23:53.000Z (about 4 years ago)
- Last Synced: 2025-02-10T02:09:30.449Z (3 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nell
command line tool for running command filesNell is a command line interface for running and building programs.
## Installation
```
npm install -g nell-cli
```## nell.config
Every command that need to be executed must be written in nell.config.Example config file
```shell
sudo npm init --yes
sudo npm install express pug multer
touch app.js
code .
```Execute it
```
nell-cli run
```This **nell.config** file start a node project, install dependencies, create app.js and open VScode editor.
Every commands that can be run on your OS, can be written in nell.
**Note :** Nell works for current directly.