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

@wasp.sh/wasp-app-runner

v0.0.14

Published

CLI tool for running Wasp applications for e2e testing

Downloads

9,371

Readme

Wasp Application Runner

A robust script to run your Wasp application, including automated database setup and migrations. There are two modes:

  • dev: Runs the Wasp app in development mode using wasp start.
  • build: Builds the Wasp app for production using wasp build and runs it.

When installed, it provides a run-wasp-app command that can be used to run your Wasp app.

Usage

Global dependency:

npm install -g @wasp.sh/wasp-app-runner

run-wasp-app dev

Local dependency:

npm i -D @wasp.sh/wasp-app-runner

npx run-wasp-app dev

You can also use it in npm scripts without the npx prefix, since node_modules/.bin is automatically added to the PATH inside scripts:

Example package.json:

{
  // ...
  "scripts": {
    "run-dev": "run-wasp-app dev",
  },
  // ...
}

One time usage:

npx @wasp.sh/wasp-app-runner dev

Options

npx run-wasp-app <mode> [--path-to-app <path>] [--wasp-cli-cmd <command>] [--db-image <image>]

You must pass the <mode> as an argument, which can be either dev or build.

| Option | Description | Example | | ---------------- | ------------------------------------------------------ | ----------------- | | --path-to-app | Path to your Wasp application directory (default: ".") | ./my-wasp-app | | --wasp-cli-cmd | Wasp CLI command (default: wasp) | wasp-cli | | --db-image | Custom PostgreSQL Docker image (default: postgres) | postgis/postgis |

Postgres Configuration

Check the ./db/postgres.ts file to see the Postgres configuration used.

If Postgres is used, the script automatically sets the DATABASE_URL env variable for the server app:

DATABASE_URL=postgresql://postgres:devpass@localhost:5432/postgres

Custom database image

You can override the Docker image used for Postgres via --db-image. If not provided, the default postgres is used.

Examples: --db-image postgres:15, --db-image pgvector/pgvector:pg16, --db-image postgis/postgis:14-3.2.

[!NOTE] The same requirements as in wasp start db apply for the Postgres image used. See Wasp docs for more details.

Env variables

When using the dev mode:

  • If the app you are trying to run has .env.server or .env.client env files defined, the wasp start will use them as expected.

When using the build mode:

  • run-wasp-app will use the .env.server file when running the server container with Docker locally (which is not done usually by Wasp).
  • .env.client will not be used when building the client, the REACT_APP_API_URL is hard-coded to http://localhost:3001.

Development

When developing, you can run the script directly from the local directory without installing it globally:

npm install
npm run start -- <mode> [--path-to-app <path>] [--wasp-cli-cmd <command>] [--db-image <image>]

npm run start runs npm run build to build the TypeScript code and then runs the ./bin/index.js script.

Publishing

To publish a new version of wasp-app-runner, follow these steps:

1. Update Package Version

Using npm version command:

# For patch releases (bug fixes)
npm version patch

# For minor releases (new features)
npm version minor

# For major releases (breaking changes)
npm version major

2. Authenticate with npm

# Login to npm with an account that has access to the @wasp.sh organization
npm login

3. Publish to npm Registry

# Publish the package publicly
npm publish --access public