https://github.com/anjupriya-v/cli-note-taking-app
Developed Using Node.js.
https://github.com/anjupriya-v/cli-note-taking-app
nodejs notesapp
Last synced: about 1 year ago
JSON representation
Developed Using Node.js.
- Host: GitHub
- URL: https://github.com/anjupriya-v/cli-note-taking-app
- Owner: anjupriya-v
- Created: 2021-09-29T11:01:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-11T08:48:26.000Z (over 3 years ago)
- Last Synced: 2025-01-23T19:38:52.150Z (about 1 year ago)
- Topics: nodejs, notesapp
- Language: JavaScript
- Homepage:
- Size: 193 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Command Line Note Taking App
### Tech Stack Used:
- Node.js
### Demo Video
https://user-images.githubusercontent.com/84177086/201301960-dabd80cb-6e73-49d1-96b5-0008e52e7f3d.mp4
### It performs four Operations
- add - to add the note
- list - to list all the notes which is available
- read - to read the description of single note
- remove - to remove the note
## :point_down:Steps to initialize the project:
- Clone the repository
```
$ git clone https://github.com/anjupriya-v/command-line-note-taking-app.git
```
- Redirect to the cloned repo directory
- Install the dependencies
```
npm install
```
### Open up the terminal for doing the following operations
-If you want to know about the available operations, use
```
node app.js available-operations
```
- If you want the list all the notes, use
```
node app.js list
```
- If you want to add the note, use
```
node app.js add --title="titleName" --body="titleDescription"
```
- If you want to read the description of particular note, use
```
node app.js read --title="titleName"
```
- If you want to remove the note, use
```
node app.js remove --title="titleName"
```