
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.
terminal-notes
Advanced tools
A vim-style terminal note-taking application built with React and Ink. Features a full TUI (Terminal User Interface) with vim keybindings for efficient note management.
~/.terminal_notes.jsonnpm install --global terminal-notes
Or run locally:
npm install
npm run build
npm start
Launch the app to see all your notes:
terminal-notes
| Key | Action |
|---|---|
j / ↓ | Move down to next note |
k / ↑ | Move up to previous note |
g | Jump to top (first note) |
G | Jump to bottom (last note) |
s | Toggle sort mode (priority ↑/↓, date ↑/↓) |
1 | Set selected note priority to high |
2 | Set selected note priority to medium |
3 | Set selected note priority to low |
4 | Set selected note priority to none |
i / a | Insert/Add new note |
Enter | View selected note (read-only) |
e | Edit selected note directly |
dd | Delete selected note (quick delete) |
q / ESC | Quit application |
| Key | Action |
|---|---|
↑ / ↓ | Navigate through links (if any) |
o | Open selected link in browser |
d / Del | Delete selected link |
Enter | Switch to edit mode |
ESC | Return to list |
| Key | Action |
|---|---|
↑ | Switch to title editing |
↓ | Switch to content editing |
← / → | Navigate cursor left/right in text |
Tab | Cycle through priorities (high → medium → low → none) |
Ctrl+L | Add a new link to the note |
Enter | In title: move to content field. In content: insert new line |
Ctrl+S | Save note |
ESC | Cancel and return to list |
| Key | Action |
|---|---|
y | Yes, delete the note |
n / ESC | No, cancel deletion |
When you launch the app, you'll see:
Terminal Notes (3) | Sort: Priority ↑
Welcome to Terminal Notes - This is a vim-style note ta... 1 11/14/2025
Shopping List - Buy milk, eggs, bread, and c... 2 11/14/2025
Project Ideas - Build a terminal-based task ... - 11/14/2025
j/k=↓/↑ | g=top | G=bottom | s=sort | 1/2/3/4=priority | i=insert | Enter=view | e=edit | d=delete | q=quit
The priority is shown on the right (1=high, 2=medium, 3=low, -=none) with color coding.
You can attach URLs to notes for quick reference. Links are displayed with a count indicator (🔗) in the list view.
e or i)Ctrl+L to add a linkEnter on a note)↑ and ↓ to navigate through linkso to open the selected link in your default browserd or Del to delete the selected linkAll notes are stored in a JSON file located at:
~/.terminal_notes.json
Each note contains:
id - Unique identifiertitle - Note titlecontent - Note content/body (supports multiline text with newlines)priority - Priority level (high, medium, low, none)links - Array of links with URL and optional titleobscured - Boolean flag to hide sensitive contentcreatedAt - Creation timestamp (ISO 8601)updatedAt - Last modification timestamp (ISO 8601)Compile the JSX source code:
npm run build
Automatically rebuild on file changes:
npm run dev
Launch the application:
npm start
Run tests and linters:
npm test
source/
├── app.js # Main application logic
├── cli.js # CLI entry point
├── storage.js # File I/O operations
└── components/
├── NoteListView.js # Main list view with vim controls
├── NoteEditor.js # Create/edit note form
├── MultilineInput.js # Custom multiline text input component
├── DeleteConfirmation.js # Delete confirmation dialog
└── ThemeSelector.js # Theme selection component
Vim-style navigation is efficient and keeps your hands on the home row. No need to reach for arrow keys or mouse. If you're familiar with vim, you'll feel right at home!
MIT
FAQs
A vim-style terminal note-taking application built with React and Ink
We found that terminal-notes demonstrated a healthy version release cadence and project activity because the last version was released less than 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.