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

cosense-userscript-dev

v0.3.0

Published

A local development tool for Cosense (Scrapbox) UserScripts.

Readme

cosense-userscript-dev

A local development tool for Cosense (Scrapbox) UserScripts.

Write Cosense UserScripts in TypeScript, build and serve them locally, and see changes auto-reloaded in the browser.

Features

  • TypeScript — Write Cosense UserScripts in TypeScript
  • Hot reload — Edit in your editor, save, and changes are reflected in the browser automatically
  • Zero config — Just put .ts files in scripts/ and run bunx cosense-userscript-dev

Demo

Demo

Installation

No install required — use bunx to run directly:

bunx cosense-userscript-dev

Optionally, add it as a dev dependency for defineConfig type support in cosense-dev.config.ts:

bun add -d cosense-userscript-dev

Quick Start

See TUTORIAL-ja.md for a detailed step-by-step walkthrough. For a working example, see mrsekut/userscripts.

  1. Generate the Tampermonkey bootstrap (one-time):
bunx cosense-userscript-dev loader
  1. Create a scripts/ directory and write Cosense UserScripts in TypeScript:
my-userscripts/
  scripts/
    foo.ts    ← uses cosense.PageMenu.addMenu(), etc.
    bar.ts
  package.json
  1. Start the dev server:
bunx cosense-userscript-dev
  1. Open http://localhost:3456/loader.user.js in the browser to install the Tampermonkey loader (one-click). This is a one-time setup — the bootstrap is stable and does not need to be updated when you add scripts or update the library.

Commands

cosense-userscript-dev (default: dev)

  • Builds scripts/*.tsdist/*.js
  • Serves dist/ via HTTP with CORS headers
  • Watches scripts/ for changes, auto-rebuilds, and triggers browser reload

cosense-userscript-dev build

  • One-shot build of scripts/*.tsdist/*.js

cosense-userscript-dev loader

  • Generates loader.user.js — a thin Tampermonkey bootstrap
  • Only needs to be run once (or when port / match config changes)

Configuration

No configuration is needed if you follow the default conventions. To customize, create a cosense-dev.config.ts file:

import { defineConfig } from 'cosense-userscript-dev';

// default values are used if not specified
export default defineConfig({
  scriptsDir: 'scripts',
  outDir: 'dist',
  port: 3456,
  match: ['https://scrapbox.io/*'],
});

Project Structure (user side)

my-userscripts/
  scripts/          … Cosense UserScripts (TypeScript)
    foo.ts
    bar.ts
  dist/             … build output (add to .gitignore)
  loader.user.js    … Tampermonkey bootstrap (generated once by `loader` command)
  cosense-dev.config.ts  … optional config
  package.json

License

MIT