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

@prosopo/scripts

v3.1.126

Published

Dev scripts for working with prosopo packages

Readme

Prosopo Dev Scripts Package

Scripts and configuration for setting up a Prosopo development environment.

Prerequisites

Dev Setup

Quickstart

git clone https://github.com/prosopo/captcha
cd captcha
npm i
npm run build:all
docker compose --file docker/docker-compose.development.yml up -d
cp demos/client-example-server/env.development demos/client-example-server/.env.development
cp demos/client-example/env.development demos/client-example/.env.development
cp dev/scripts/env.development .env.development
cp dev/scripts/env.development dev/scripts/.env.development
cp dev/scripts/env.development packages/cli/.env.development
cp dev/scripts/env.development packages/procaptcha-bundle/.env.development
npm run setup:all

Then start services in separate terminals:

# Terminal 1 - Example server
npm run start:server

# Terminal 2 - Provider API
npm run start:provider

# Terminal 3 - Demo app
npm run start:demo

Step by Step

1. Start Containers

docker compose --file ./docker/docker-compose.development.yml up -d

2. Install Dependencies

npm i

3. Build All Packages

npm run build:all

4. Configure Environment

Copy the template env files. You can use ./dev/scripts/env.development as a base.

5. Run Setup

Registers a provider, loads a dataset, and registers site keys:

npm run setup:all

6. Start Services

npm run start:provider

Testing

npm run test

CLI

The dev scripts CLI provides development utilities:

# Run the setup (register provider, load dataset, register site keys)
npm run setup

# Create env files from templates
npm run -w @prosopo/scripts -- cli create_env_files

# Encode/decode Procaptcha tokens
npm run -w @prosopo/scripts -- cli token

# Display version
npm run -w @prosopo/scripts -- cli --version