https://github.com/minsithu/nell
command line tool for running command files
https://github.com/minsithu/nell
Last synced: 2 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T02:23:53.000Z (over 4 years ago)
- Last Synced: 2025-09-15T03:40:56.908Z (3 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- 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 files
Nell 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.