- submission PR (lab-01)
- submission PR (lab-02)
- submission PR (lab-03)
- submission PR (lab-04)
- ci/cd (lab-01)
- ci/cd (lab-02)
- ci/cd (lab-03)
- ci/cd (lab-04)
- NPM
npm install
Example of adding a note to the database (must use -a or --add)
notes --add "Hello, I am an example note"
notes --add "Hello, I am an example note" --categories "school, examples" // categories optional
Example of listing the notes from the database (must use -l or --list)
notes --list // gets all notes
notes --list school // gets notes with "school" category
Example of updating a note in the database (must use -u or --update)
notes --update <note-uuid> --note "I've been updated" --categories "school, examples" // replace note-uuid with actual uuid from mongo
Example of adding a note to the database (must use -d or --delete)
notes --delete <note-uuid>
npm test