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

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

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)