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

laikacli

v0.1.1

Published

The Laika CMS command-line interface (`laikacli`, short alias `laika`): local dev storage server, config-to-typed-TypeScript codegen, and storage repository migrations.

Readme

laikacli

The Laika CMS command-line interface. One npm name, two bins for the same entry point:

  • laikacli — canonical; matches the package name, so npx laikacli / pnpm dlx laikacli just work.
  • laika — short alias once the package is installed.

Why not publish as laika? That npm name is taken by an unrelated (abandoned) package. Bin names, however, are per-package — so the short command is still ours.

Install

pnpm add -D laikacli   # or npm i -D / yarn add -D

Then:

laika local serve                 # start the local-file JSON:API storage server
laika local generate              # config.yaml -> typed config.gen.ts (add --watch to keep it fresh)
laika local migrate -s ./a -d ./b # copy a storage repository to another backend
laika local list-backends         # show every registered storage backend

Or one-off without installing:

npx laikacli local serve
pnpm dlx laikacli local serve

Commands

All local-file dev tooling lives under the local namespace; the top level is reserved for future non-local commands.

| Command | What it does | | --------------------- | --------------------------------------------------------------------------------------------------- | | local serve | Local-file JSON:API storage server for dev workflows (--root, --port, --host, --auth-token) | | local generate | Generate a typed TypeScript module from a Decap CMS config.yaml | | local migrate | Copy every atom from one storage repository to another (fs, vercel, surrealdb, …) | | local list-backends | List every registered storage backend and its pinned package version |

Run laika local <command> --help for the full flag reference.

Relationship to @laikacms/local

The commands are implemented in @laikacms/local and composed here. @laikacms/local remains the programmatic API (layerStorageServer, generateConfig, runMigrate, …) and still ships its own laika-local bin for backwards compatibility; this package is just the friendlier front door.