Command line tool for note-taking & sharing
note.js is a node.js based tool which helps you to take and share notes between your computers and even with your colleagues, right from your terminal! You short text snippets will be saved online so you can access them anywhere you want.
npm install -g notejs
USERNAME
: 4-20 alphanumeric characters (no spaces) - Your personal or your colleague's note.js username.PASSWORD
: 4-20 characters (no spaces) - Your note.js password.NOTE
: 2-20 alphanumeric characters (no spaces) - Note's name, also serves as its unique ID.CONTENT
: 2-200 characters - Note's content.
-
First you'll have to register in order to be able to use all features:
note register USERNAME PASSWORD
-
Now you can post your first note:
note post NOTE CONTENT
-
To see all notes of a user (use my as USERNAME to see yours):
note get USERNAME
-
Alternatively, you can open specific note if you know its name or even part of it:
note get USERNAME NOTE
-
You can even email a note!
note email USERNAME NOTE EMAIL
-
If you want to create a note which won't be seen when other users run the command in step #3, you can create a somewhat "private" note, which will be seen only for users who know the note's name:
note post-private NOTE CONTENT
-
To delete an existing note:
note delete NOTE
-
If your repository is a mess and you want to delete all your notes:
note delete-all
-
In any case your session expires, you have to login in order to be able to use all features:
note login USERNAME PASSWORD
-
Forgot with which user you are logged in?
note whoami
-
Working on a public computer? make sure you logout after finish working:
note logout
-
When you think it's time to say goodbye, run this command to delete all your notes and username
note unregister
- Currently, each user is allowed to create up to 100 notes (it may change in the near future)