https://github.com/adarshaacharya/terminalnotes
Note app to add, remove, list and read the notes from user in the CLI created using Node JS.
https://github.com/adarshaacharya/terminalnotes
Last synced: 6 months ago
JSON representation
Note app to add, remove, list and read the notes from user in the CLI created using Node JS.
- Host: GitHub
- URL: https://github.com/adarshaacharya/terminalnotes
- Owner: adarshaacharya
- Created: 2019-05-26T16:56:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T23:54:07.000Z (about 2 years ago)
- Last Synced: 2025-03-27T21:38:39.219Z (6 months ago)
- Language: JavaScript
- Size: 151 KB
- Stars: 3
- Watchers: 0
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TerminalNotes
:memo: Terminal Notes is an app that helps to add, remove , list and read the notes via Command Line.**Technology Used :** :computer:
- Node JS 10.15.3
- npm 6.4.1
- ES6
This app also contains ES5 version of given code in folder named ES5.
---
**How to Run The App** :running:
Make sure you have Node and npm installed.
Open in terminal in Mac or Linux or bash shell in Windows and run the following command.1. Clone the repo first:
```
git clone https://github.com/adarshaacharya/TerminalNotes.git```
2. Go to that folder and run the given command :
```
npm init
```
---
**Operations in App** :syringe:> To add item to list :
```
node app.js add --title="title_name" --body="body_items"
```
> To remove item from list:
```
node app.js remove --title="title_name"
```

>To view all items in list:
```
node app.js list
```
>To view notes body from title:
```
node app.js read --title="title_name"```
---
*Feel free to contribute and help grow the note!*