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

mitarashi

v0.3.1

Published

シンプルな静的サイトジェネレーター

Readme

Mitarashi

インストール

npm install mitarashi

使い方

1. プロジェクトの初期化

プロジェクトディレクトリに以下の構造を作成します:

my-blog/
├── mitarashi.config.ts
├── posts/
│   └── hello.md
└── templates/
    └── minimal/
        ├── layout.html
        ├── post.html
        └── index.html

2. 設定ファイルの作成

mitarashi.config.ts:

import { defineConfig } from "mitarashi";

export default defineConfig({
  site: {
    siteTitle: "My Blog",
    description: "ブログの説明",
    baseUrl: "/",
  },

  paths: {
    postsDir: "posts",
    outputDir: "dist",
    templateDir: "templates/minimal",
  },

  theme: {
    layout: "layout.html",
    post: "post.html"
  },

  options: {
    cleanOutputDir: true,
  }
});

3. Markdownファイルの作成

posts/hello.md:

---
title: "Hello, World!"
date: "2025-07-30"
---

# Hello, World!

はじめまして。今日からブログを始めることにしました。

## なぜブログを始めたのか

日々の学びや気づきを記録しておきたいと思い、アウトプットの場としてブログを選びました。

4. ビルドの実行

# カレントディレクトリでビルド
mitarashi

# 特定のディレクトリを指定
mitarashi ./my-blog

ビルドが完了すると、dist/ディレクトリにHTMLファイルが生成されます。

テンプレート

利用可能な変数

layout.html

  • {{ siteTitle }} - サイトのタイトル
  • {{ slot }} - 記事やページのコンテンツが挿入される場所

post.html

  • {{ title }} - 記事のタイトル(Front Matterから)
  • {{ date }} - 記事の日付(Front Matterから)
  • {{ content }} - MarkdownからHTMLに変換されたコンテンツ

index.html

  • トップページ用のテンプレート

テンプレートの例

templates/minimal/layout.html:

<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>{{ siteTitle }}</title>
</head>
<body>
  <header>
    <h1><a href="/">{{ siteTitle }}</a></h1>
  </header>
  <main>
    {{ slot }}
  </main>
</body>
</html>

templates/minimal/post.html:

<article>
  <h1>{{ title }}</h1>
  <p>{{ date }}</p>
  <div>{{ content }}</div>
</article>

対応しているMarkdown記法

  • 見出し(#
  • 太字(**text**
  • 斜体(*text*
  • 段落
  • リスト
  • リンク([text](url)
  • 画像(![alt](url)
  • ブロック引用(>
  • テーブル