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

trixo

v1.0.0

Published

Multi-stack project scaffolder CLI tool - Generate professional project structures for Python, JavaScript, Go, and more

Readme

Trixo

Multi-stack project scaffolder CLI tool

Generate professional project structures for multiple languages and frameworks with a single command.

Features

  • 🚀 Multi-language support: Python, JavaScript/TypeScript, Go, Rust
  • 🎯 Framework templates: FastAPI, Django, Flask, Express, Gin, and more
  • ⚙️ Modular options: Choose from ORM, migrations, Docker, testing, and more
  • 📦 Production-ready: Includes best practices, configurations, and documentation
  • 🔧 Extensible: Easy to add new languages, frameworks, and options

Installation

npm install -g trixo

Or use with npx:

npx trixo my-project

Usage

trixo [project-name]

Example

# Interactive mode
trixo

# With project name
trixo my-fastapi-app

Supported Stacks

Python

  • FastAPI - Modern, fast web framework with async support

    • SQLAlchemy ORM
    • Alembic migrations
    • Docker & Docker Compose
    • pytest testing
    • Structured logging
    • And more...
  • Django (coming soon)

  • Flask (coming soon)

JavaScript/TypeScript

  • Express (coming soon)

Go

  • Gin (coming soon)

Quick Start

  1. Create a FastAPI project:

    trixo my-api
    # Select: Python → FastAPI
    # Choose options: ORM, Migrations, Docker, Tests, etc.
  2. Navigate to your project:

    cd my-api
  3. Set up environment:

    cp .env.example .env
    # Edit .env with your settings
  4. Install dependencies:

    pip install -r requirements.txt
  5. Run migrations (if enabled):

    alembic upgrade head
  6. Start the server:

    uvicorn app.main:app --reload

Project Structure

A typical FastAPI project generated with Trixo:

my-api/
├── app/
│   ├── api/          # API routes
│   ├── core/         # Configuration & logging
│   ├── db/           # Database models & session
│   └── main.py       # FastAPI application
├── tests/            # Test files
├── alembic/          # Database migrations
├── requirements.txt  # Python dependencies
├── Dockerfile        # Docker configuration
├── docker-compose.yml
└── README.md         # Project documentation

Options

When generating a project, you can choose from various options:

  • ORM - SQLAlchemy ORM for database operations
  • Migrations - Alembic for database migrations
  • Docker - Dockerfile for containerization
  • Docker Compose - Multi-container setup with PostgreSQL
  • Testing - pytest with async support
  • Environment Files - .env configuration
  • Production Config - Production-ready settings
  • Development Config - Development settings
  • Linter - ruff for code linting
  • Formatter - black for code formatting
  • Pre-commit Hooks - Git hooks for code quality
  • Logging - Structured logging with structlog
  • Monitoring - Health check endpoints
  • README - Comprehensive documentation

Development

# Clone the repository
git clone https://github.com/martian56/trixo.git
cd trixo

# Install dependencies
npm install

# Build
npm run build

# Run in development
npm run dev

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

ISC

Author

Fuad Alizada