A simple CLI tool for creating quick timestamped notes as markdown files.
Create a note instantly without installation:
npx note I love tacos
# Creates: note-2025-07-27-i-love-tacos.mdnpx note Your note content herebunx note Your note content herepnpm dlx note Your note content hereyarn dlx note Your note content hereFor frequent use, you can install globally:
# npm
npm install -g note
# bun
bun install -g note
# pnpm
pnpm add -g note
# yarn
yarn global add noteAfter global installation, use directly:
note This is my noteThe note command creates a markdown file in your current directory with:
- Filename:
note-YYYY-MM-DD-slugified-content.md - Content: Your note as a markdown heading with timestamp
Example:
$ note Hello world this is a test
✅ Created: note-2025-07-27-hello-world-this-is-a-test.mdFile contents:
# Hello world this is a test
Created: 2025-07-27T14:30:00.000Z- Zero configuration
- Works with any package manager
- Creates timestamped markdown files
- Slugifies your note for clean filenames
- ESM module (requires Node.js 14+)
This package also includes a React application. To run the development server:
bun install
bun devMIT