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

@new-wave/devenv

v0.1.5

Published

Dev environment framework — bare metal to running workspace

Downloads

49

Readme

@new-wave/devenv

Dev environment framework — bare metal to running workspace in one command.

Define your services, repos, and projects in a single YAML file, then run devenv up to clone repos, start services, build, and run everything in dependency order.

Install

npm install -g @new-wave/devenv

Quick Start

Create a devenv.yml in your workspace root:

name: my-app

repos:
  backend:
    url: https://github.com/org/backend
  frontend:
    url: https://github.com/org/frontend

services:
  redis:
    image: redis:7-alpine
    ports: ["6379:6379"]
    ready: redis-cli ping

projects:
  backend:
    repo: backend
    runtime: java
    setup: ./mvnw clean package -DskipTests
    run: ./mvnw spring-boot:run
    port: 8080
    depends_on: [redis]

  frontend:
    repo: frontend
    runtime: node
    setup: npm install
    run: npm run dev
    port: 5173
    depends_on: [backend]

Then run:

devenv up

Commands

| Command | Description | | --- | --- | | devenv up | Full setup: install packages → clone repos → start services → build → run | | devenv down | Stop all running services and projects | | devenv services | Start only services (Docker containers, Supabase) | | devenv status | Show running services and projects |

Options

-c, --config <path>   Config file path (default: devenv.yml)
-d, --dir <path>      Working directory for repos (default: .)
-t, --token <token>   GitHub token for private repos
--skip-system          Skip system package installation

Configuration

system

Install system packages and language runtimes.

system:
  packages: [make, git, curl]
  runtimes:
    node: 20
    java: 21
    python: 3.11

Auto-detects the OS package manager (apt, yum, dnf, brew, apk).

repos

Git repositories to clone.

repos:
  api:
    url: https://github.com/org/api
    branch: develop  # default: main

services

Docker containers and Supabase instances.

services:
  # Docker service
  postgres:
    image: postgres:16-alpine
    ports: ["5432:5432"]
    env:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
    volumes: ["/var/lib/postgresql/data"]
    ready: pg_isready

  # Supabase service
  supabase:
    type: supabase
    config: ${repos.core-infra}/supabase

projects

Applications to build and run. Supported runtimes: node, java, python, go.

projects:
  api:
    repo: api
    runtime: java
    setup: ./mvnw clean package
    run: ./mvnw spring-boot:run
    port: 8080
    depends_on: [supabase, redis]
    env:
      SPRING_PROFILES_ACTIVE: local
      SUPABASE_URL: ${supabase.url}
    env_file: .env.local

Set run: skip for projects that only need a build step.

Variable Interpolation

Reference environment variables, repo paths, and service outputs in your config:

env:
  API_KEY: ${MY_API_KEY}              # Environment variable
  INFRA_PATH: ${repos.core-infra}     # Path to cloned repo
  DB_URL: ${supabase.db_url}          # Service output
  ANON_KEY: ${supabase.anon_key}      # Service output

Example

See example.devenv.yml for a full multi-service configuration with Supabase, LocalStack, Redis, and four projects across Java, Node.js, and Python.

License

MIT