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 🙏

© 2025 – Pkg Stats / Ryan Hefner

create-ex

v1.5.0

Published

Create express app with ex cli

Downloads

47

Readme

Express.js NPM version Downloads PRs-Welcome

Table of Contents

Overview

create-ex is designed to kickstart your Express projects with best practices built in. It consists of:

  • TypeScript: Built entirely with TypeScript
  • Modular API Structure: Routes, controllers, services, and mappers
  • Optional Database Integration: Optional Prisma or Drizzle support with multiple database providers:
  • Optional Web Socket Integration: Real-time communication using Socket.IO with modular event handling
  • Automated Setup: Initialize Git, install dependencies, and configure project settings effortlessly

It's a CLI tool to streamline the setup of a modular Express API application. Every component is optional, and the final template is generated based on your specific needs. We provide our recommendations for best practices, but ultimately, the decisions are yours.

Getting Started

Interactive Mode

The easiest way to get started is by using the interactive CLI. Run one of the commands below and follow the prompts to configure your new Express project:

# npm
npx create-ex@latest

# yarn
yarn create ex

# pnpm
pnpm create ex@latest

# bun
bun create ex@latest

Non-interactive Mode

If you prefer to create a new project without interactive prompts, you can pass command-line options. For example, run:

npx create-ex my-app --noGit --noInstall -y

Cli Options

When you run npx create-ex --help, you'll see a summary of available options:

Usage: create-ex [options] [dir]

Arguments:
  dir            The name of the application, as well as the name of the directory to create

Options:
  --noGit        Explicitly tell the CLI to not initialize a new Git repo in the project
  --noInstall    Explicitly tell the CLI to not run the package manager install command
  -y, --default  Bypass the CLI and use all default options to bootstrap a new ex-app
  -v, --version  Display the version number
  -h, --help     display help for command

Community

We believe in building a supportive ecosystem. If you have questions or need help:

Contributing

We welcome contributions to improve Create Express App! Please see our CONTRIBUTING.md for more details on how to get started.

License

This project is licensed under the MIT License. See the LICENSE file for details.