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

@noego/create

v0.0.7

Published

CLI scaffolding tool for NoEgo framework applications

Readme

@noego/create

Scaffold a NoEgo v1 application that uses the current @noego/app, Dinner, Forge, and IoC contracts.

Requirements

  • Node.js 20.11 or newer
  • npm

Usage

npx @noego/create my-app

The package also installs the create-noego and noego-create binaries. Run without a project name for interactive prompts.

create-noego [project-name] [options]

| Option | Description | | --- | --- | | --template <type> | full-stack, api-only, or minimal | | --database <type> | sqlite or postgres; ignored by minimal | | --port <number> | Development port; defaults to 3000 | | --jobs / --no-jobs | Enable or disable the Captain jobs example | | --no-seeds | Do not create Proper seed directories or scripts | | --yes, -y | Accept non-interactive defaults | | --force | Replace an existing target directory | | --help, -h | Show CLI help | | --version, -v | Print the package version |

Templates

full-stack

Creates an OpenAPI backend plus a Svelte 5 frontend rendered by Forge. The browser entry imports mountFrontend from the generated noego:frontend virtual module. The project uses the strict version 1 noego.config.yml contract and builds for Node by default.

api-only

Creates the OpenAPI backend, IoC controller example, selected database configuration, migrations, and optional jobs without frontend files.

minimal

Creates the smallest NoEgo host with runtime boot hooks and no database, OpenAPI, or frontend scaffolding.

Generated project

Depending on the template, the generated project includes:

  • noego.config.yml using version: 1
  • src/server/server.ts with node and worker boot hooks
  • an OpenAPI status route and IoC controller for non-minimal templates
  • src/ui/main.ts, an HTML shell, Svelte routes, views, and layouts for full-stack
  • Proper configuration and migrations for database-backed templates
  • optional Captain jobs and Proper seed directories
  • NOEGO_FRAMEWORK_GUIDE.md with the current runtime contracts

The generator initializes a Git repository and stages generated files when Git is available.

Start the project

For full-stack and api-only projects:

cd my-app
cp .env.example .env
npm install
npm run reset
npm run dev

For minimal projects, omit the database reset:

cd my-app
cp .env.example .env
npm install
npm run dev

Available scripts include dev, build, start, typecheck, and lint. Database-backed templates also include reset; seed-enabled templates include seed.

Build targets

The generated config defaults to Node:

npm run build

To create a Cloudflare Workers package:

npx noego build --target cloudflare --nodejs-compat

Review runtime dependencies before targeting Workers; database drivers and other Node-oriented packages may require nodejs_compat or a platform-native replacement.

Developing @noego/create

npm install
npm run build
node bin/create.js my-app --yes

npm test currently reports that this package has no automated test suite.