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

create-jskim

v0.6.0

Published

Scaffold a new JSKim static HTML project

Readme

create-jskim

JSKim プロジェクトを作成する scaffold CLI です。

Package 名は create-jskim です。npm registry で公開済みです。生成されるプロジェクトの engine dependency は @ywal123456/jskim です。

使い方

推奨:

npm create jskim@latest

他の package manager:

pnpm create jskim
yarn create jskim

代替:

npx create-jskim my-project

必要に応じて:

npm install --global create-jskim
create-jskim my-project

ディレクトリ名を省略すると、プロジェクト名を尋ねます。空のまま Enter すると既定値 jskim-project を使います。

生成完了後の案内は、実行した package manager に合わせて install / dev コマンドを表示します。検知できない実行方法では npm コマンドが表示されることがあります。

ヘルプ / バージョン

create-jskim --help
create-jskim --version

生成されるファイル

project/
├─ package.json
├─ jskim.config.js
├─ README.md
├─ .gitignore
└─ src/
   └─ sample/
      ├─ pages/
      │  ├─ index.html.njk
      │  ├─ dashboard/
      │  ├─ crud/
      │  ├─ wizard/
      │  └─ assets/
      ├─ layouts/base.njk
      └─ components/

生成プロジェクトは @ywal123456/jskim^0.6.0)を devDependencies に持ちます。scripts の実行名は binary jskim のままです。 インストール後の公式ユーザーガイド PDF は、生成 project が入れる @ywal123456/jskim package の docs/ 配下で確認できます(creator package 本体には PDF を含めません)。

標準 sample は公式の静的 UI sample(Portal / Dashboard / CRUD / Wizard)です。application 処理は含みません。pages 配下の .html.njk はレンダリングされ、平文 CSS や画像はそのままコピーされます。

生成後の手順

生成器は 自動で npm installgit init を実行しません。完了案内に表示されたコマンドを実行してください。

例(npm で create した場合):

cd my-project
npm install
npm run dev

既定の開発サーバー URL:

http://127.0.0.1:3000/

安全ポリシー

  • 空ではない既存ディレクトリには書き込みません(上書きなし)
  • 隠しファイルがある場合も「空ではない」とみなします
  • 生成失敗時は、今回作った部分だけを片付けます

リポジトリ

  • Repository: https://github.com/ywal123456-collab/jskim/tree/main/create-jskim
  • Issues: https://github.com/ywal123456-collab/jskim/issues

ライセンス

create-jskim は MIT License のもとで提供されます。詳細は LICENSE を確認してください。

生成されるユーザープロジェクトの License はユーザー側で決定してください。このツールの MIT License を生成プロジェクトへ強制しません。