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

@studyfetch/sfdeploy

v0.12.2

Published

Build and deploy StudyFetch apps, APIs, and Chrome side-panel tools.

Downloads

1,393

Readme

sfdeploy

Build and deploy StudyFetch apps, APIs, and browser tools to https://<project>.studyfetchdeploy.com. Node.js 20+ is required.

npm i -g @studyfetch/sfdeploy
sfdeploy login
mkdir my-app
cd my-app
sfdeploy init my-app
sfdeploy projects create my-app --visibility private
sfdeploy deploy

init writes into the current directory. Use an empty folder for a new app.

Chrome apps

SFDeploy for Chrome is one shared extension that opens your deployed apps in Chrome's side panel. An app can call its own published scripts to read or change the current website and continue across pages after the user starts it. Use it for page widgets, collecting visible page data, form helpers, or browser workflows.

Download the private extension and follow the screenshot setup. Sign in to the Hub with StudyFetch in the same Chrome profile. Chrome 138+ and Allow user scripts are required. App users do not need the CLI.

Create a complete Page Colors app with CLI 0.12.2+:

mkdir my-chrome-app
cd my-chrome-app
sfdeploy init my-chrome-app --example chrome-colors
sfdeploy projects create my-chrome-app --visibility private
sfdeploy deploy

Open a website, click SFDeploy in Chrome, select Page Colors, and click Apply to page. The app calls sfdeploy.run('color-widget', { color }); its script changes the page, adds a color widget, and returns JSON. Reset restores the page. The starter includes the full interface, Worker, script, and configuration.

For an existing app, add chrome_extension to its sfdeploy.json, serve a panel page, and declare page scripts under actions. Read the complete guide before implementing; it covers the SDK, inputs/results, navigation, cleanup, access, and QA:

sfdeploy docs chrome
sfdeploy --example-doc chrome-colors

App code and scripts update when you deploy. The unpacked extension itself needs a separate download and reload; unsupported versions are blocked. Updating the CLI does not update Chrome.

Coding agents

The package installs the sfdeploy skill for supported local agents. Refresh it with sfdeploy install-skills. Technical guidance is available on demand:

sfdeploy --llm-prompt                 # full agent instructions
sfdeploy examples                     # working starters
sfdeploy --example-doc chrome-colors   # every file and setup step
sfdeploy docs                         # topic index
sfdeploy docs chrome                  # browser apps and the SDK
sfdeploy docs design                  # StudyFetch UI guidance

Browser app interfaces should stay simple: one App with clear task buttons, results, and short errors. Keep technical documentation in agent guidance.

Read the agent skill and Chrome guide online, or browse apps in the Hub.