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

aerocoding

v0.1.30

Published

AeroCoding CLI - Generate production-ready code from UML diagrams

Readme

AeroCoding CLI

Generate production-ready code from your UML diagrams.

Installation

npm install -g aerocoding

Quick Start

# 1. Login (once)
aerocoding login

# 2. Create a new project
aerocoding create

# 3. Make changes in the diagram editor on aerocoding.dev

# 4. Update your code incrementally
aerocoding update

Commands

aerocoding login

Authenticate with your AeroCoding account. Opens browser for secure OAuth authentication.

aerocoding login

aerocoding create [name]

Interactive wizard to create a new AeroCoding project with full architecture generation.

# Interactive (recommended)
aerocoding create

# With custom directory name
aerocoding create my-project

Options:

  • -t, --template <id> - Skip template selection
  • -p, --project <id> - Skip project selection
  • -f, --force - Overwrite existing directory without asking

Creates:

  • aerocoding.json - Project configuration
  • aerocoding-manifest.json - File tracking manifest (auto-generated)
  • backend/ - Generated backend code

aerocoding update

Incrementally update generated code while preserving your changes.

aerocoding update

Options:

  • -f, --force - Overwrite modified files without merging
  • -v, --verbose - Show detailed file operations
  • --dry-run - Preview changes without writing files

Features:

  • Three-way merge to preserve your custom code
  • Creates .new and .conflict files when merge fails
  • Syncs manifest to cloud for backup

aerocoding resolve

Clean up conflict files after manual resolution.

aerocoding resolve

Options:

  • -v, --verbose - Show detailed resolution info
  • -a, --all - Resolve all conflicts without confirmation

aerocoding whoami

Show current authenticated user.

aerocoding logout

Clear stored credentials.

Configuration Files

aerocoding.json

Project configuration (user-editable):

{
  "$schema": "https://aerocoding.dev/schema.json",
  "projectId": "your-project-id",
  "templateId": "clean-arch-dotnet",
  "templateVersion": "1.0.0",
  "namespace": "MegaStore",
  "organizationId": "your-org-id",
  "output": {
    "backend": "./backend",
    "frontend": "./frontend"
  }
}

aerocoding-manifest.json

Auto-generated file tracking (do not edit):

{
  "version": "1.0.0",
  "lastSync": "2024-01-15T10:30:00Z",
  "files": {
    "backend/src/Domain/Customer.cs": {
      "hash": "sha256:abc123...",
      "mtime": 1705312200000,
      "size": 2847,
      "type": "entity"
    }
  }
}

Incremental Generation

AeroCoding uses smart merging to preserve your custom code:

  1. Unchanged files: Silently updated
  2. Modified files: Three-way merge attempted
  3. Conflicts: Creates .new and .conflict files for manual resolution
Customer.cs           <- Your version (unchanged)
Customer.cs.new       <- New generated version
Customer.cs.conflict  <- Diff showing conflicts

After resolving conflicts manually, run aerocoding resolve to clean up.

Security

Credentials are stored securely in your OS credential manager:

  • macOS: Keychain
  • Windows: Credential Manager
  • Linux: Secret Service API

Links

License

MIT