NotesApp
sample node js application to create, delete, read, search note. Copyright AD©2020 | Author: Arka Das
command
--start
1. >node app.js
2. >npm run start
--help
1. >node app.js --help
2. >node app.js --help
3. >npm start -- --help
--version
1. >node app.js --version
2. >npm run note-version
3. >npm start -- --version
--add note
1. >node app.js add --title=<your-note-title> --content=<your-note-content> --signature=<your-signature>
2. >npm run note-add -- --title=<your-note-title> --content=<your-note-content> --signature=<your-signature>
3.>npm start -- add --title=<your-note-title> --content=<your-note-content> --signature=<your-signature>
--remove note
1. >node app.js remove --title=<your-note-title>
2. >npm run note-remove -- --title=<your-note-title>
3. >npm start -- remove --title=<your-note-title>
--open note
1. >node app.js open --title=<your-note-title>
2. >npm run note-open -- --title=<your-note-title>
3. >npm start -- open --title=<your-note-title>
--search note
1. >node app.js search
2. >node app.js search --keyword=<search-keyword>
3. >npm run note-search
4. >npm run note-search -- --keyword=<search-keyword>
5. >npm start -- search
6. >npm start -- search --keyword=<search-eyword>