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

create-techarchflow-manav

v1.0.0

Published

Scaffold a production-ready, containerized full-stack project with Go + Django Admin + SvelteKit + PostgreSQL

Readme

🚀 create-techarchflow-manav

Scaffold a production-ready, fully containerized full-stack project in seconds.

The Stack

| Layer | Technology | Why | |-------|-----------|-----| | API | Go 1.23 (net/http + GORM) | Fastest memory & latency; Air hot-reload | | DB Admin | Django 5 Admin | Best-in-class database management UI + migrations | | Frontend | SvelteKit 5 + Tailwind 4 + DaisyUI | No virtual DOM, compiler-first, lighter than React | | Database | PostgreSQL 16 | ACID, advanced queries, battle-tested | | Orchestration | Docker Compose | One command boots everything |

Quick Start

npx create-techarchflow-manav my-app
cd my-app
docker compose up --build

That's it. Four services spin up:

| Service | URL | Port | |---------|-----|------| | Frontend (SvelteKit) | http://localhost:5173 | 5173 | | Go API | http://localhost:3000/api/health | 3000 | | Django Admin | http://localhost:8000/admin | 8000 | | PostgreSQL | — | 5432 |

Architecture

┌────────────┐     ┌────────────┐
│  SvelteKit │────▶│   Go API   │
│   :5173    │     │   :3000    │
└────────────┘     └─────┬──────┘
                         │
                   ┌─────▼──────┐
                   │ PostgreSQL │
                   │   :5432    │
                   └─────┬──────┘
                         │
                   ┌─────▼──────┐
                   │   Django   │
                   │   Admin    │
                   │   :8000    │
                   └────────────┘

Project Structure

my-app/
├── backend/          # Go API server
│   ├── cmd/          # Entry point
│   ├── handlers/     # Route handlers
│   ├── models/       # GORM models
│   ├── middlewares/   # CORS, logging, auth
│   ├── database/     # DB connection
│   └── Dockerfile
├── db_admin/         # Django Admin
│   ├── db_admin/     # Django settings
│   ├── items/        # Example app
│   └── Dockerfile
├── frontend/         # SvelteKit app
│   ├── src/routes/   # Pages
│   └── Dockerfile
├── docker-compose.yml
├── .env.example
├── Makefile
└── README.md

Useful Commands

make up          # docker compose up --build
make down        # docker compose down
make logs        # docker compose logs -f
make migrate     # Run Django migrations
make superuser   # Create Django superuser

Default Credentials

| Service | Username | Password | |---------|----------|----------| | Django Admin | admin | admin123 | | PostgreSQL | admin | changeme |

⚠️ Change these in .env before deploying to production.

Development

  • Go API: Edit files in backend/ — Air watches for changes and hot-reloads
  • SvelteKit: Edit files in frontend/src/ — Vite HMR handles hot-reload
  • Django: Edit files in db_admin/ — Django dev server auto-reloads

Why This Stack?

  • Go is the fastest option for HTTP APIs — minimal memory footprint, incredible latency
  • Django Admin gives you a complete database management UI out of the box without writing a single line of frontend code for admin operations
  • SvelteKit compiles away the framework — no virtual DOM overhead, smaller bundles, faster TTI than React/Next.js
  • PostgreSQL is the most capable open-source database — JSONB, full-text search, window functions, CTEs

License

MIT