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-mds-app

v0.1.6

Published

Scaffold production-ready Expo apps for MobileDevelopmentSimplified

Readme

create-mds-app

Scaffold a production-ready Expo + React Native app in seconds — with auth, navigation, theming, i18n, state management and EAS/OTA already wired up.

Built by MobileDevelopmentSimplified, free for everyone to use.

npm create mds-app@latest
# or
npx create-mds-app my-app

What you get

A clean, opinionated starter based on a real production app:

  • Expo SDK 56 / React Native 0.85 with the New Architecture.
  • React Navigation — pick a stack, drawer, bottom tabs, or any combination.
  • Supabase auth (optional) — email/password, Google, Apple, password reset.
  • State & data — Zustand + MMKV (persisted) and TanStack Query.
  • Styling — NativeWind 4 (Tailwind) + gluestack-ui, with design tokens.
  • i18nreact-i18next with a typed en-EN namespace.
  • Tooling — TypeScript, Prettier, Jest, EAS Build/Submit/Update, Sentry hook.

Interactive prompts

Run with no flags for a guided setup:

npx create-mds-app

You'll be asked for the app name, slug, bundle id, URL scheme, which modules to include, your package manager, and whether to init git / install deps.

Non-interactive (CI / scripting)

npx create-mds-app my-app \
  --name "My App" \
  --slug my-app \
  --bundle-id com.acme.myapp \
  --auth --onboarding --drawer --tabs \
  --package-manager yarn --yes

| Flag | Description | |------|-------------| | -n, --name <name> | Display name | | -s, --slug <slug> | Expo slug / package name | | -b, --bundle-id <id> | iOS/Android bundle identifier | | --scheme <scheme> | Deep-link URL scheme | | --auth / --no-auth | Supabase auth module | | --onboarding / --no-onboarding | First-run intro flow | | --drawer / --no-drawer | Side drawer navigator | | --tabs / --no-tabs | Bottom tab navigator | | --package-manager <yarn\|npm\|pnpm> | Package manager | | --no-git / --no-install | Skip git init / dependency install | | -y, --yes | Accept defaults, skip prompts |

After generating

Each generated app contains a docs/POST_GENERATION_SETUP.md with the exact next steps (env vars, EAS, Supabase). The short version:

cd my-app
cp .env.example .env   # fill in values
yarn start
npx expo prebuild      # when you need native projects

Documentation

Develop the CLI

npm install
npm run build           # bundle src/ -> dist/ with tsup
node dist/index.js ./tmp-app --name "Test" --slug test-app --yes --no-install

License

MIT