
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A CLI app for taking simple notes without ever leaving the terminal.
jin allows you to take and organize simple notes without ever leaving the command line. Capture ideas, track tasks, and reference code snippets with straightforward and intuitive commands.
$ npm install --global jin-app
# Add a new note to an existing notebook.
# If the notebook does not exist, it will be created.
$ jin add [notebook] <note>
# jin a [notebook] <note>
# Create a new, empty notebook.
$ jin add [notebook]
# jin a [notebook]
Note: a notebook name is required.
$ jin add nodejs "Use 'util.promisify()' to promisify a callback-style function."
✔ Added "Use 'util.promisify()' to promisify a callback-style function." to "nodejs".
# List all notes in the given notebook.
# Pass the --long|-l option to get detailed information.
$ jin list [options] [notebook]
# jin ls [options] [notebook]
# List all notebooks.
# Pass the --long|-l option to get detailed information.
$ jin list [options]
# jin ls [options]
$ jin list nodejs
nodejs Notes
----------------
0 Use 'os.homedir()' to access the home directory.
1 Use 'util.promisify()' to promisify a callback-style function.
# Edit the contents of a note at the given index of a given notebook.
$ jin edit <notebook> <index>
# jin ed <notebook> <index>
# Remove a note at the given index of a given notebook.
$ jin remove [notebook] <index>
# jin rm [notebook] <index>
# Remove a given notebook.
$ jin remove [notebook]
# jin rm [notebook]
Note: You must pass in the
--forceflag when attempting to remove a notebook that contains notes.
$ jin remove nodejs 0
✔ Removed note at index 0 from nodejs notebook.
$ jin rm --force nodejs
✔ Removed nodejs notebook.
# Create an exports of the notes collection in the current directory.
$ jin export
# jin exp
The notes collection is stored in the user's home directory by default.
# Display general help output.
$ jin --help
# jin -h
# Display command-specific help output.
$ jin [cmd] --help
MIT © Christopher Murphy
FAQs
A CLI app for taking simple notes without ever leaving the terminal.
We found that jin-app 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.