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

@ambiten/create

v1.0.0

Published

Ambiten project scaffold generator.

Readme


Overview

@ambiten/create is the official scaffolding tool for the Ambiten platform.

It generates project structures, configuration, runtime wiring, and starter templates so applications begin with a consistent foundation instead of assembling infrastructure manually.

The generated projects follow Ambiten's execution model from day one, including runtime initialization, adapter integration, context propagation, multi-tenancy, logging, and optional GraphQL or Redis capabilities.

Installation

The CLI can be executed directly without a global installation.

npx @ambiten/create

Or installed locally:

npm install -D @ambiten/create

Quick Start

Create a new project interactively:

npx @ambiten/create init

Create a project with a name:

npx @ambiten/create init my-app

The CLI will guide you through runtime configuration and optional platform capabilities.

What the CLI Generates

Generated projects can include:

  • REST APIs
  • GraphQL APIs
  • Next.js applications
  • MERN applications
  • Multi-tenant configurations
  • Runtime logging
  • Redis integration
  • Garbage collection support
  • Runtime adapters

The exact structure depends on the selected template and options.

Runtime Architecture

Projects generated by the CLI are aligned with the Ambiten execution model.

Bootstrap
    ↓
Adapter
    ↓
Context
    ↓
Models
    ↓
MongoDB

The CLI generates this structure automatically so applications begin from a consistent operational baseline.

Common Commands

Initialize a new project:

npx @ambiten/create init

Generate project artifacts:

npx @ambiten/create generate

Display available commands:

npx @ambiten/create --help

Relationship with Ambiten

@ambiten/create is the entry point into the Ambiten ecosystem.

The CLI scaffolds projects.

@ambiten/core provides the runtime.

@ambiten/logger provides structured telemetry and observability.

Together they create a consistent platform for building context-aware applications.

Documentation

Complete guides for project scaffolding, templates, runtime configuration, adapters, and deployment workflows are available at:

https://ambiten.dev

Philosophy

Infrastructure should be generated once and evolve consistently.

The purpose of the CLI is to help teams start with a coherent runtime architecture instead of assembling foundational infrastructure repeatedly across projects.

License

MIT