0.1.0 • Published 4 years ago

@magister_zito/notes v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Notesjs

Akin to Pynotes (see here), but integrated into a cloud-based OAuth layer and specifically designed to be delivered as a console-oriented service.

a command-line utility for taking notes from anywhere in the shell

Usage

$ npm install -g @magister_zito/notes
$ notes COMMAND
running command...
$ notes (-v|--version|version)
@magister_zito/notes/0.1.0 darwin-x64 node-v13.6.0
$ notes --help [COMMAND]
USAGE
  $ notes COMMAND
...

Commands

notes add

Adds a new note

USAGE
  $ notes add

OPTIONS
  -b, --body=body    body
  -t, --title=title  title

DESCRIPTION
  ...
  Adds a new note to the notepad.

See code: src/commands/add.js

notes help [COMMAND]

display help for notes

USAGE
  $ notes help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

notes read

Display existing notes

USAGE
  $ notes read

OPTIONS
  -t, --title=title  Title of note to read
  --id=id            ID of note to read

DESCRIPTION
  ...
  Displays all existing notes; allows user to
  select and read a note by its ID.

See code: src/commands/read.js

notes rm

Removes a note from the Notes database

USAGE
  $ notes rm

OPTIONS
  -t, --title=title  note title
  --id=id            note id

DESCRIPTION
  ...
  Permanently removes a note from the Notes database

See code: src/commands/rm.js