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

oss-starter-kit

v0.2.1

Published

A small CLI that creates starter files for open-source projects.

Readme

OSS Starter Kit

License: MIT

A small command-line tool that creates starter files for open-source projects.

It pairs well with OSS Readiness Checker: check what is missing, then generate a practical starter set.

Quick start

Run this command in the root folder of your project:

npx oss-starter-kit init .

Windows PowerShell:

npx.cmd oss-starter-kit init .

Create only selected files:

npx oss-starter-kit init . --only security,contributing

Example output

When starter files are created, the output looks like this:

OSS Starter Kit
Project: /path/to/your-project

[CREATED] CONTRIBUTING.md
[CREATED] SECURITY.md
[CREATED] CODE_OF_CONDUCT.md
[CREATED] .github/pull_request_template.md
[CREATED] .github/ISSUE_TEMPLATE/bug-report.yml
[CREATED] .github/ISSUE_TEMPLATE/feature-request.yml
[CREATED] .github/ISSUE_TEMPLATE/config.yml

Existing files are never overwritten. If a file already exists, it is shown as [SKIPPED].

日本語で試す

OSS として公開するときによく必要になるファイルをまとめて作る CLI ツールです。既にあるファイルは上書きせず、スキップします。

Windows PowerShell:

npx.cmd oss-starter-kit init .

macOS or Linux:

npx oss-starter-kit init .

特定のファイルだけ作りたい場合:

npx oss-starter-kit init . --only security,contributing

What it creates

  • CONTRIBUTING.md
  • SECURITY.md
  • CODE_OF_CONDUCT.md
  • .github/pull_request_template.md
  • .github/ISSUE_TEMPLATE/bug-report.yml
  • .github/ISSUE_TEMPLATE/feature-request.yml
  • .github/ISSUE_TEMPLATE/config.yml

Requirements

  • Node.js 20 or later

Usage

Create starter files in the current folder:

npx oss-starter-kit init .

Preview what would be created:

npx oss-starter-kit init . --dry-run

Output machine-readable JSON:

npx oss-starter-kit init . --dry-run --json

Create only selected starter files:

npx oss-starter-kit init . --only security,contributing

Available names for --only:

  • contributing
  • security
  • code-of-conduct
  • pull-request-template
  • bug-report
  • feature-request
  • issue-config

Existing files are never overwritten.

Development

Run the local source code:

node ./src/cli.js init . --dry-run

Run the tests:

npm test

Contributing

Contributions are welcome. See CONTRIBUTING.md.

Security

For security reports, see SECURITY.md.

License

MIT