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

simkl-cli

v0.3.1

Published

CLI for Simkl.com - TV, Anime & Movie tracking

Readme

simkl-cli

CLI for Simkl.com - TV, Anime & Movie tracking.

Installation

# From npm (coming soon)
npm install -g simkl-cli

# Or with bun
bun install -g simkl-cli

Setup

  1. Create an app at https://simkl.com/settings/developer/new
  2. Configure the CLI with your client ID:
simkl config --client-id YOUR_CLIENT_ID
  1. Authenticate using PIN code:
simkl auth
# Opens: https://simkl.com/pin
# Enter the code shown in CLI

Usage

Search

# Search all types
simkl search "Breaking Bad"

# Filter by type
simkl search "Inception" --type movie
simkl search "Attack on Titan" --type anime

# JSON output
simkl search "The Office" --json

Watchlist

# View your watchlist
simkl watchlist

# Filter by type
simkl watchlist --type shows

# Filter by status
simkl watchlist --status watching

Watch (Mark as Watched)

# Mark an episode as watched
simkl watch "Breaking Bad" 1x05
simkl watch "Breaking Bad" S01E05
simkl watch "Breaking Bad" 5

# Mark multiple episodes
simkl watch "Breaking Bad" 1x05,1x06,1x07
simkl watch "Breaking Bad" 1-5

# Mark a movie as watched
simkl watch "Dune" --movie

# Mark using ID directly
simkl watch --imdb tt1234567 1x01

Library Management

# Add to a list (plan to watch, watching, etc.)
simkl list --title "Dune" --movie --status plantowatch

# Add using IMDB ID
simkl list --imdb tt1234567 --status watching

# Remove episodes from watched history
simkl unwatch --title "Breaking Bad" --season 1 --episodes 5

Configuration

# Show current config
simkl config --show

# Show config file path
simkl config --path

Development

# Install dependencies
bun install

# Run in dev mode
bun run dev

# Build
bun run build

# Build standalone binary
bun run build:binary

# Regenerate API types from OpenAPI spec
bun run generate:types

API Types

TypeScript types are auto-generated from the Simkl API Blueprint spec using:

  1. apib2swagger - Convert API Blueprint to OpenAPI 3.0
  2. openapi-typescript - Generate TypeScript types from OpenAPI

License

MIT