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

@nimoh-digital-solutions/create-nimoh-app

v1.4.5

Published

Scaffold a full-stack Nimoh project (Django BE + React FE) in one command

Downloads

927

Readme

create-nimoh-app

Scaffold a production-ready full-stack project in one command: Django backend + React/Vite frontend + optional Expo mobile app — all pre-configured and wired together.

Quick Start

npx @nimoh-digital-solutions/create-nimoh-app my-app

With mobile app:

npx @nimoh-digital-solutions/create-nimoh-app my-app --mobile

What You Get

my-app/
  backend/            Django API (DRF + nimoh-be-django-base)
    .venv/            Python virtual environment (ready to use)
    config/           Django settings (base / development / production)
    docker-compose.yml
    Makefile
  frontend/           React app (Vite + TypeScript)
    Dockerfile        Multi-stage Docker build
    Makefile
  mobile/             Expo (React Native) app        ← with --mobile
  packages/
    shared/           Shared types, Zod schemas, i18n ← with --mobile
  .github/
    workflows/ci.yml  CI for BE + FE + mobile         ← with --mobile
    dependabot.yml    Auto dependency updates          ← with --mobile
  .gitignore
  Makefile            Root dev commands (start/stop all services)
  README.md
  .env.example

Usage

npx @nimoh-digital-solutions/create-nimoh-app [project-name] [options]

Options

| Flag | Description | |------|-------------| | --yes, -y | Non-interactive mode (accept all defaults) | | --mobile | Include Expo (React Native) mobile app | | --ai-helpers | Sync AI helper assets (agents, skills, instructions) | | --help, -h | Show help | | --version, -V | Show version |

Examples

# Interactive (prompts for name, port offset, options)
npx @nimoh-digital-solutions/create-nimoh-app

# Named project
npx @nimoh-digital-solutions/create-nimoh-app my-saas

# Full stack with mobile, non-interactive
npx @nimoh-digital-solutions/create-nimoh-app my-saas --mobile --yes

# Custom port offset (BE 8100, FE dev 3100, FE prod 8180)
npx @nimoh-digital-solutions/create-nimoh-app my-saas  # then enter 100 at prompt

# With AI helpers
npx @nimoh-digital-solutions/create-nimoh-app my-saas --mobile --ai-helpers

Prerequisites

  • Python >= 3.12
  • Node.js >= 18
  • Git
  • Docker & Docker Compose (for containerized workflows)
  • Expo CLI (npx expo) — only if using --mobile

What Gets Scaffolded

Backend (Django)

  • Django 5 + Django REST Framework
  • nimoh-be-django-base with batteries included:
    • JWT authentication (Simple JWT with httpOnly cookies)
    • Celery + Celery Beat (async tasks)
    • Django Channels (WebSocket support)
    • PostgreSQL + Redis
    • Split settings (base / development / production / test)
    • WhiteNoise, Gunicorn + Uvicorn, SendGrid
  • With --mobile: mobile auth (Google ID token), push notifications (Expo Push API), WebSocket JWT middleware

Frontend (React)

  • React 19 + TypeScript + Vite 7
  • @nimoh-digital-solutions/tast-* UI component packages
  • TanStack Query v5, Zustand v5, React Router DOM v7
  • React Hook Form + Zod validation
  • i18next, Sentry, PWA support
  • Vitest + Playwright + MSW testing
  • Tailwind CSS v4
  • Multi-stage Dockerfile with nginx

Mobile (Expo) — --mobile

  • Expo (React Native) with React Navigation
  • TanStack Query + Zustand + MMKV storage
  • Secure token storage (expo-secure-store)
  • Biometric authentication
  • Sentry error tracking
  • Certificate pinning
  • Offline mutation queue
  • EAS Build configuration

Shared Package — --mobile

  • packages/shared/ consumed by both frontend and mobile via @shared/* path aliases
  • TypeScript types, Zod schemas, i18n JSON files, constants, and utilities
  • Pre-configured in tsconfig, Vite, Babel, and Metro

After Scaffolding

cd my-app

# Start everything
make start

# Or individually:
cd backend && source .venv/bin/activate && make dev
cd frontend && yarn dev
cd mobile && npx expo start    # if --mobile

Port Defaults

| Service | Default Port | |---------|-------------| | Django API | 8000 | | React dev (Vite) | 3000 | | React prod (nginx) | 8080 | | PostgreSQL | 5432 | | Redis | 6379 | | Expo dev | 8081 |

Use the port offset to avoid conflicts when running multiple projects (e.g., offset 100 → Django 8100, React dev 3100).

Related Packages

License

MIT