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

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.

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"
```
![Alt text](image.png)

## Remove Note
```
node app.js remove --title="do homework" --body="Do the dataMining Task"
```
![image](https://github.com/alin00r/Notes-App/assets/74410154/eef0b1e1-8928-431e-baa5-2cb6acd75c1d)

## List Notes
```
node app.js list
```
![image](https://github.com/alin00r/Notes-App/assets/74410154/049a95a3-a6dc-4595-8651-bc636233c5fe)

## Search by Note Using title
```
node app.js read --title="do homework"
```
![image](https://github.com/alin00r/Notes-App/assets/74410154/edb29297-3811-4b63-bb53-27db714f6d5f)