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

@aegisx/create-app

v1.0.4

Published

Create enterprise Nx monorepo with Angular and Fastify

Downloads

12

Readme

@aegisx/create-app

Create enterprise-grade Nx monorepo with Angular and Fastify in seconds.

🚀 Quick Start

npx @aegisx/create-app my-project
cd my-project
nx serve api    # API on http://localhost:3333
nx serve web    # Web on http://localhost:4200
nx serve admin  # Admin on http://localhost:4201

📦 What's Included

  • Nx Monorepo - Modern build system with caching
  • 3 Apps Ready to Run:
    • api - Fastify backend with health checks
    • web - Angular SPA for public users
    • admin - Angular admin dashboard
  • Shared Libraries:
    • shared/types - TypeScript interfaces
    • shared/utils - Common utilities
  • Developer Experience:
    • Git hooks with Husky
    • Commit linting
    • Code formatting with Prettier
    • Linting with ESLint
    • Testing with Jest
  • Docker Ready - PostgreSQL & Redis
  • Full Documentation - Architecture guides

🎯 Interactive Mode

npx @aegisx/create-app

You'll be prompted for:

  • Project name
  • Target directory
  • Docker setup
  • Database migrations

⚡ Skip All Prompts

npx @aegisx/create-app my-project -y

📋 CLI Options

Options:
  -V, --version     output the version number
  -y, --yes         skip prompts and use defaults
  --skip-git        skip git initialization
  --skip-install    skip dependency installation
  -h, --help        display help for command

🛠️ Requirements

  • Node.js >= 18
  • Yarn (will be installed automatically if not present)

📁 Project Structure

my-project/
├── apps/
│   ├── api/         # Fastify backend
│   ├── web/         # Angular public app
│   └── admin/       # Angular admin app
├── libs/
│   └── shared/
│       ├── types/   # Shared TypeScript types
│       └── utils/   # Shared utilities
├── docs/            # Complete documentation
├── nx.json          # Nx configuration
└── package.json     # Dependencies

🚀 Next Steps

After creating your project:

  1. Start Development

    nx serve api    # Backend on :3333
    nx serve web    # Frontend on :4200
    nx serve admin  # Admin on :4201
  2. Run Tests

    nx test api
    nx test web
    nx test admin
  3. Build for Production

    nx build api --prod
    nx build web --prod
    nx build admin --prod

📚 Documentation

Full documentation is included in the docs/ directory:

  • Architecture guides
  • Development workflows
  • Testing strategies
  • Deployment guides

🤝 Contributing

Contributions are welcome! Please read our contributing guidelines.

📄 License

MIT