https://github.com/alin00r/notes-app
A simple command-line note-taking app in Node.js, utilizing file I/O for persistent storage. Easily add, remove, list, and read notes with this efficient and user-friendly tool.
https://github.com/alin00r/notes-app
argv-parser chalk fs javascript nodejs npm yargs
Last synced: about 2 months ago
JSON representation
A simple command-line note-taking app in Node.js, utilizing file I/O for persistent storage. Easily add, remove, list, and read notes with this efficient and user-friendly tool.
- Host: GitHub
- URL: https://github.com/alin00r/notes-app
- Owner: alin00r
- Created: 2023-12-04T20:52:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-04T21:14:08.000Z (over 2 years ago)
- Last Synced: 2025-02-15T14:16:27.592Z (over 1 year ago)
- Topics: argv-parser, chalk, fs, javascript, nodejs, npm, yargs
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# Notes App
*A simple command-line note-taking app in Node.js*
## ADD Note
```
node app.js add --title="do homework" --body="Do the dataMining Task"
```

## Remove Note
```
node app.js remove --title="do homework" --body="Do the dataMining Task"
```

## List Notes
```
node app.js list
```

## Search by Note Using title
```
node app.js read --title="do homework"
```
