https://github.com/hannasdev/node-notes
Simple node app that writes input to file in json-format
https://github.com/hannasdev/node-notes
Last synced: about 1 year ago
JSON representation
Simple node app that writes input to file in json-format
- Host: GitHub
- URL: https://github.com/hannasdev/node-notes
- Owner: hannasdev
- Created: 2017-09-22T14:11:04.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-22T14:28:17.000Z (almost 9 years ago)
- Last Synced: 2024-03-27T20:21:04.314Z (over 2 years ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node Notes
## Run
`node app.js [command]`
## Display available commands.
Command: `--help`
Example: ```node app.js --help```
## Add new note
Command: `add`
- Params:
- `--title=[title]`
- `--body=[body]`
Example: ```node app.js add --title="My title" --body="My body"```
## Read note
Command: `read`
- Param:
- `--title=[title]`
Example: ```node app.js read --title="My title"```
## Remove note
Command: `remove`
- Param:
- `--title=[title]`
Example: ```node app.js add --title="My title"```
## List all notes available
Command: `list`
Example: ```node app.js list```
## Author
* Written by Hanna Söderström
* Email: [info@hannasoderstrom.com](mailto:info@hannasoderstrom.com)