Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Note box is a sqlite3 based Node.JS application which helps taking notes in command line. It has following features:
npm install -g notebox
nb n "this is my note"
Multiple line note
nb n
Stream data from a file
nb n < myfile
Set tags (separated by comma)
nb n -t tag1,tag2,tag3 "Hell world"
Store binary file with a title
nb n --title mypdf.pdf <mypdf.pdf
Use password to protect data
nb -n -p pwd "my data here"
or input password silently
nb -n "my data " -p
Simple text match
nb s "word or phrase"
or by tags
nb s -t tag1,tag2
or by id
nb s --id <id>
list all note
nb s
remove all found items (find and remove)
nb s -t personal_tag --delete
extract stored file
nb s mypdf.pdf -o raw > mypdf.pdf
export a password protected file
nb s mypic.png -p -o raw >mypic.png
Use $EDITOR to change note data.
nb u <id>
Update password
nb u <id> -p
Change $EDITOR env var to the path of your editor so that you can create note, update note using the editor.
Shrink DB file
nb sql "vacuum;"
Use different db file
db n -d <dbFile Path>
##More see
nb help
#Encrypted Database By default, sqlite database is not encrypted. Although password protected notes are aes256 encrypted, it is nice to have whole database file encrypted. To do this, once notebox is installed, goto the installation folder and re-build / configure node-sqlite in node_modules folder.
Here is how: https://github.com/mapbox/node-sqlite3#building-for-sqlcipher
FAQs
powerful command line based note taking app.
The npm package notebox receives a total of 21 weekly downloads. As such, notebox popularity was classified as not popular.
We found that notebox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.