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

@ludovikallen/create-zest

v0.0.6

Published

CLI tool to create Zest applications with .NET backend and React frontend

Downloads

6

Readme

@ludovikallen/create-zest

A CLI tool to create Zest applications with .NET backend and React frontend.

Usage

Interactive Mode

npm create @ludovikallen/zest

This will prompt you for:

  • Project name (must be in CamelCase, e.g., MyZestApp)
  • Include authentication
  • Include todo functionality with sample CRUD API
  • Include Docker files for deployment
  • Database type (SQLite, PostgreSQL, or In-Memory)
  • Package manager preference (npm, yarn, or pnpm)
  • Skip automatic setup commands

Command Line Mode

npm create @ludovikallen/zest MyZestAp

Options

  • --auth: Include authentication (default: false)
  • --todo: Include todo functionality with sample CRUD API (default: false)
  • --docker: Include Docker files for deployment (default: true)
  • --database: Database type - sqlite, postgresql, or inmemory (default: sqlite)
  • --package-manager: Package manager - npm, yarn, or pnpm (default: npm)
  • --no-setup: Skip automatic setup commands (default: false)
  • --help: Show help

Features

The CLI can generate projects with the following features:

Core Features

  • Zest Framework: Full-stack framework with .NET backend and React frontend
  • TypeScript: Type-safe development for both frontend and backend
  • Vite: Fast frontend build tool and dev server
  • Tailwind CSS: Utility-first CSS framework
  • React 19: Latest React with modern features
  • Todo API Example: Sample CRUD API with Entity Framework (optional)
  • Theme Toggle: Dark/light mode support
  • ESLint: Code linting and formatting

Optional Features

  • Authentication: User registration and login with Zest Auth
  • Docker Support: Dockerfile and docker-compose.yml for deployment
  • Database Options: SQLite, PostgreSQL, or In-Memory database
  • Dev Environment: Docker PostgreSQL setup for development

Supported Options

  • Database Types: SQLite (default), PostgreSQL, In-Memory
  • Package Managers: npm (default), yarn, or pnpm
  • .NET Version: .NET 9.0

Generated Project Structure

MyZestApp/
├── backend/                 # .NET Backend
│   ├── Controllers/         # API Controllers
│   │   └── TodoController.cs
│   ├── Entities/           # Data models
│   │   ├── BaseEntity.cs
│   │   ├── Status.cs
│   │   └── Todo.cs
│   ├── Repositories/       # Data access layer
│   │   ├── ITodoRepository.cs
│   │   └── TodoRepository.cs
│   ├── Properties/
│   │   └── launchSettings.json
│   ├── ApplicationDbContext.cs
│   ├── Program.cs          # .NET entry point
│   ├── MyZestApp.csproj   # .NET project file
│   ├── appsettings.json   # Configuration
│   └── appsettings.Development.json
├── frontend/               # React Frontend
│   ├── src/
│   │   ├── auth/          # Authentication components (if enabled)
│   │   ├── components/    # React components
│   │   │   ├── ThemeToggle.tsx
│   │   │   └── TodoPage.tsx
│   │   ├── contexts/      # React contexts
│   │   │   ├── ThemeContext.tsx
│   │   │   ├── ThemeContextType.ts
│   │   │   └── useTheme.ts
│   │   ├── App.tsx        # Main App component
│   │   ├── Main.tsx       # App entry point
│   │   ├── index.css      # Global styles
│   │   └── vite-env.d.ts
│   ├── public/
│   │   └── vite.svg
│   ├── package.json
│   ├── vite.config.ts
│   ├── tsconfig.json
│   ├── tsconfig.app.json
│   ├── tsconfig.node.json
│   ├── eslint.config.js
│   └── myapp.frontend.esproj
├── dev/                    # Development environment (if PostgreSQL)
│   └── docker-compose.yml
├── docker/                 # Docker deployment (if enabled)
│   ├── Dockerfile
│   ├── docker-compose.yml
│   └── templates/
│       └── default.conf.template
├── MyZestApp.sln          # Visual Studio solution
├── MyZestApp.slnLaunch    # Solution launch configuration
├── README.md              # Project documentation
└── .gitignore

Getting Started with Generated Project

After creating your project:

  1. Install frontend dependencies:

    cd frontend
    npm install  # or yarn/pnpm based on your choice
  2. Install backend dependencies:

    cd backend
    dotnet restore
  3. Set up database (if using SQLite or PostgreSQL):

    # For PostgreSQL, first start the dev environment:
    cd dev
    docker compose up -d
    cd ../backend
       
    # Install EF tools and create database:
    dotnet tool install --global dotnet-ef
    dotnet ef migrations add InitialCreate
    dotnet ef database update
  4. Run the application:

    # From the backend directory:
    dotnet run
       
    # Or open the solution in Visual Studio:
    # MyZestApp.sln
  5. Access your app:

    • Backend API: http://localhost:5226
    • Frontend: http://localhost:5173 (Vite dev server)
    • API Documentation: Available through Zest framework

Development Workflow

Backend Development

  • Todo API controllers in /backend/Controllers
  • Entity models in /backend/Entities
  • Repository pattern in /backend/Repositories
  • Entity Framework DbContext in /backend/ApplicationDbContext.cs
  • Configuration in appsettings.json and appsettings.Development.json

Frontend Development

  • React components in /frontend/src/components
  • Context providers in /frontend/src/contexts
  • Authentication components in /frontend/src/auth (if auth enabled)
  • Theme system with dark/light mode toggle
  • TypeScript client generation via Zest framework
  • Hot reload via Vite dev server with Tailwind CSS

Visual Studio Integration

  • Complete solution file (.sln) for both projects
  • Launch configuration for simultaneous backend/frontend debugging
  • Frontend project configured as JavaScript project (.esproj)

Requirements

  • Node.js 18 or later
  • .NET SDK 9.0
  • npm/yarn/pnpm (based on preference)
  • Docker (optional, for PostgreSQL database or deployment)
  • Visual Studio (recommended for best development experience)

About Zest

Zest is a full-stack framework that provides:

  • Automatic TypeScript client generation from .NET APIs
  • Built-in authentication and authorization
  • Seamless integration between .NET backend and React frontend
  • Development tools and utilities

License

MIT

Contributing

This is part of the Zest framework ecosystem.