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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@loop-kit/cli

v0.0.6

Published

**loop-kit CLI** is a self-starting dev/build tool that makes it trivial to run and build TypeScript projects with [Vite](https://vitejs.dev/) and [vite-node](https://github.com/vitest-dev/vite-node).

Readme

@loop-kit/cli

loop-kit CLI is a self-starting dev/build tool that makes it trivial to run and build TypeScript projects with Vite and vite-node.

It’s designed to just work out of the box: no boilerplate, no setup — the CLI auto-inits your project with sensible defaults if needed.


Features

  • Dev Run : Run TypeScript entries instantly with vite-node --watch.
  • Build : Use Vite’s SSR build mode with zero config.
  • Auto Init : If missing, the CLI will create:
  • package.json (type: module)
  • tsconfig.json with NodeNext + JSX defaults
  • .gitignore
  • Dev dependencies: vite, vite-node
  • Upgrade in Place : One-command self-upgrade via npm.
  • Cross-platform : Works reliably on macOS, Windows, and Linux.

Installation

npm i -g @loop-kit/cli

Requires Node 20+ with native ESM support.


Usage

loop <entry>          # Dev-run with vite-node (watch, auto-init)
loop run <entry>      # Same as above
loop build <entry>    # Vite build --ssr into dist/ (auto-init)
loop upgrade          # Upgrade CLI via npm
loop version          # Show CLI version

Examples

# Run a TypeScript file with vite-node
loop index.ts

# Build a server entrypoint
loop build src/server.ts --outDir build --minify false

# Upgrade the CLI itself
loop upgrade

Philosophy

The CLI is designed to bootstrap itself :

  • If your project has no config, loop will scaffold just enough to make things run.
  • If dependencies are missing, loop installs them.
  • It aims to reduce friction on fresh environments — ideal for experiments, demos, or quickly starting new projects.

The long-term goal is for loop-kit itself to be self-hosting : built and extended entirely with loop.


Roadmap

  • Replace hardcoded bootstrapping with loop-kit-native utilities .
  • Integrate @loop-kit/common and @loop-kit/platform.
  • Eventually power richer workflows (Live/UseGPU integrations, declarative config).

License

MIT © Isaac Harvey / Infinite Loop Technologies