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

create-sekiban-app

v0.1.0-alpha.8

Published

Create a new Sekiban application with Dapr

Downloads

3

Readme

create-sekiban-app

Create a new Sekiban application with Dapr integration.

Quick Start

npx create-sekiban-app my-app
cd my-app
pnpm build
pnpm dev

What's Included

This template creates a complete Sekiban application with:

  • Domain Layer: Domain models, commands, events, and projectors
  • API Layer: Express.js REST API with Sekiban integration
  • Event Handlers: Dapr actors for event processing
  • Multi-Projector: Dapr actors for projections
  • Event Relay: Service for event distribution
  • Workflows: Dapr workflow integration

Prerequisites

  • Node.js 18 or later
  • pnpm 8 or later
  • Docker and Docker Compose
  • Dapr CLI (optional, for local development)

Project Structure

my-app/
├── packages/
│   ├── domain/          # Domain models and business logic
│   ├── api/             # REST API server
│   ├── api-event-handler/   # Event processing actors
│   ├── api-multi-projector/ # Projection actors
│   ├── event-relay/     # Event distribution service
│   └── workflows/       # Dapr workflows
├── dapr/                # Dapr configuration
│   ├── components/      # Dapr components (pubsub, statestore)
│   └── config.yaml      # Dapr configuration
├── scripts/             # Utility scripts
└── docker-compose.yml   # Docker services (PostgreSQL, Redis)

Available Scripts

In the root directory:

  • pnpm build - Build all packages
  • pnpm dev - Start development servers for all packages
  • pnpm test - Run tests for all packages
  • pnpm services:start - Start Docker services (PostgreSQL, Redis)
  • pnpm services:stop - Stop Docker services

Running with Dapr:

  • ./run-all-services.sh - Start all services with Dapr

Configuration

Environment Variables

Create a .env file in the root directory:

# PostgreSQL
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=sekiban_sample
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres

# Redis
REDIS_HOST=localhost
REDIS_PORT=6379

# Dapr
DAPR_HTTP_PORT=3500
DAPR_GRPC_PORT=50001

Storage Options

The template supports two storage modes:

  1. In-Memory (default): Good for development and testing
  2. PostgreSQL: For production use

To use PostgreSQL, set USE_POSTGRES=true when starting the API.

Development Workflow

  1. Start Docker services:

    pnpm services:start
  2. Build the project:

    pnpm build
  3. Start development servers:

    pnpm dev
  4. Or run with Dapr:

    ./run-all-services.sh

Testing

The template includes example tests. Run them with:

pnpm test

Deployment

The application is designed to run in a Kubernetes environment with Dapr. See the Dapr documentation for deployment instructions.

Learn More

License

MIT