npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

zettelkasten-starter

v1.0.3

Published

An ultimately simple CLI tool and library for zettelkasten beginners

Downloads

9

Readme

Zettelkasten Starter

An ultimately simple CLI tool and library for Zettelkasten beginners.

📦 Installation

Global Installation (Recommended)

npm install -g zettelkasten-starter

Local Installation

npm install zettelkasten-starter

🚀 Usage

As CLI Tool

# Interactive mode
create-zettelkasten

# Specify project name directly
create-zettelkasten my-notes

# Create project in Japanese
create-zettelkasten my-notes --lang ja

# Create project in English
create-zettelkasten my-notes --lang en

As Library

const { createZettelkasten } = require('zettelkasten-starter');

// Basic usage
await createZettelkasten('./my-zettelkasten');

// Specify language
await createZettelkasten('./my-zettelkasten', 'ja');
await createZettelkasten('./my-zettelkasten', 'en');

📁 Generated Directory Structure

When you create a project, the following structure is generated:

my-zettelkasten/
├── 01_FleetingNote/          # Fleeting notes
│   └── sample-fleeting.md
├── 02_LiteratureNote/        # Literature notes
│   └── sample-literature.md
├── 03_PermanentNote/         # Permanent notes
│   └── sample-permanent.md
├── 04_StructureNote/         # Structure notes
│   └── sample-structure.md
└── README.md                 # Usage guide

🎯 Key Features

  • 4 Note Types: Classification based on the Zettelkasten method
  • Sample Files: Usage examples for each note type
  • Multi-language Support: Japanese and English supported
  • CLI/Library Support: Use from command line or programmatically

📝 API Reference

createZettelkasten(targetPath, language)

Parameters

  • targetPath (string): Directory path where the project will be created
  • language (string, optional): Generation language. 'ja' or 'en' (default: 'en')

Returns

  • Promise<void>: Promise indicating project creation completion

Examples

const { createZettelkasten } = require('zettelkasten-starter');

// Create Japanese project
await createZettelkasten('./knowledge-base', 'ja');

// Create English project
await createZettelkasten('./knowledge-base', 'en');

⚙️ Requirements

  • Node.js >= 14.0.0

🛠️ Development

# Clone repository
git clone https://github.com/Enokisan/zettelkasten-starter.git
cd zettelkasten-starter

# Install dependencies
npm install

# Run tests
npm test

# Check coverage
npm run test:coverage

📄 License

MIT

🤝 Contributing

Issues and pull requests are always welcome!

📚 Related Links


Start efficient knowledge management with Zettelkasten! 🚀