lisajacobson / notes-cmd-app

A notes command line app built in NodeJS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

notes-cmd-app

a notes app for the command line written in Node

Build Setup

# install dependencies
npm install

Running the app

# run on command line
node app [command] --argument(s)

# add a note (adds to notes.json and will create file on first note add)
node app add --title=\"title\" --body=\"body\"

# read a note (prints out note title)
node app read --title=\"title\"

# list all notes (prints out all notes, title and body)
node app list

# remove a note (removes specific note)
node app remove --title=\"title\"

Debugging

# watch for changes - useful for debugging
nodemon app

About

A notes command line app built in NodeJS

License:MIT License


Languages

Language:JavaScript 100.0%