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-skip-service

v1.2.1

Published

CLI tool to create and initialize Skip services with customizable templates

Readme

create-skip-service

A CLI tool to bootstrap Skip services with various templates. It provides a quick way to start new Skip projects with pre-configured templates for different use cases.

Current status

CI npm downloads

pnpm Node.js

Usage

To create a new Skip service, run:

npx create-skip-service <project-name> [options]

Options

  • -t, --template <name> - Use a specific template (default, with_postgres, with_react_vite)
  • -e, --example <name> - Use an example from the Skip repository
  • --no-git-init - Skip git repository initialization
  • -f, --force - Overwrite existing directory
  • -v, --verbose - Show detailed output
  • -q, --quiet - Suppress non-error output

Available Templates

Templates can be found here.

default

A basic reactive Skip service template that includes:

  • Core Skip service structure
  • TypeScript configuration
  • Development tools setup

with_postgres

A template that includes:

  • PostgreSQL database integration
  • Database models and schema
  • TypeScript configuration
  • Development tools setup

with_react_vite

A full-stack chat application template that includes:

  • React frontend with Vite
  • Skip reactive service backend
  • Real-time chat functionality
  • TypeScript configuration throughout

Development

To work on this tool locally:

  1. Clone the repository
  2. Install dependencies:
    pnpm install
  3. Build the project:
    pnpm build
  4. Run in development mode:
    pnpm dev

Scripts

  • pnpm build - Build the project
  • pnpm start - Run the CLI
  • pnpm dev - Run in development mode with watch
  • pnpm clean - Clean build artifacts
  • pnpm format - Format code with Prettier
  • pnpm test - Run tests in watch mode
  • pnpm test:run - Run tests once
  • pnpm test:ui - Run tests with UI
  • pnpm test:coverage - Run tests with coverage report
  • pnpm typecheck - Type checking without emitting

Testing the CLI locally

node dist/cli.js <project-name> [options]

Available Examples

You can also bootstrap your project using examples from the Skip repository by using the --example flag:

npx create-skip-service my-project --example <example-name>

blogger

A full-stack blogging platform demonstrating:

  • Skip reactive service with leader-follower distributed configuration
  • Flask web service for REST API
  • Vue.js frontend
  • PostgreSQL database
  • HAProxy reverse proxy
  • Docker Compose and distributed deployment options

chatroom

A real-time chat application featuring:

  • Skip reactive service with Kafka event store
  • Express.js web service
  • React frontend with real-time messaging
  • Docker Compose configuration
  • Event-driven architecture demonstration

hackernews

A HackerNews clone showcasing:

  • Skip reactive service with distributed leader-follower setup
  • Flask web service with read/write separation
  • React frontend with real-time updates
  • PostgreSQL database
  • HAProxy load balancing
  • Both Docker Compose and Kubernetes deployment options
  • Comprehensive real-time voting and posting system

Support

Join the Discord to talk to other community members and developers or ask any questions.