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

@varunindiit/create-expo-starter

v1.0.0

Published

Production-ready Expo (SDK 56) starter: expo-router auth flow, bottom tabs, Redux Toolkit, theming, i18n, SVG support, API/service layer and reusable components. Scaffolds a fully renamed project in seconds.

Readme

create-expo-starter

A CLI that scaffolds a production-ready Expo (SDK 56) app in seconds. Answer one prompt (the project name) and you get a fully wired, renamed project that runs immediately — no extra setup.

npx @varunindiit/create-expo-starter
# or
npx @varunindiit/create-expo-starter my-cool-app --bundle-id com.acme.cool

What you get

A complete, scalable architecture copied from a real app:

src/
├── app/                 # expo-router routes (file-based navigation)
│   ├── _layout.tsx      #   root navigator + global providers + auth guard
│   ├── (auth)/          #   auth flow (login, …) — shown when logged out
│   └── (tabs)/          #   bottom-tab app — shown when logged in
├── components/          # reusable UI: Button, Input, Text, Header, Container,
│                        # BottomSheet, ImagePickerSheet, Common/*, Icon, …
├── redux/               # Redux Toolkit store + feature slices (auth, app, …)
├── services/            # axios api client, Config, storage (MMKV), places
├── theme/               # colors, fonts, spacing, typography
├── localization/        # i18next setup + en/fr resources
├── hooks/               # shared hooks (useCurrentLocation, …)
├── utils/               # constants + helper functions
├── types/               # shared TypeScript types
└── assets/              # fonts, images, svg icons (SVG-as-component support)

Highlights

  • expo-router file-based navigation with a declarative Stack.Protected auth guard — the auth flow and the tab app are mounted based on state.auth.isLoggedIn, no manual redirects.
  • Bottom tabs via a custom BottomTabBar.
  • Redux Toolkit store pre-wired with feature slices.
  • axios API layer with token interceptor + mocked() helper, centralised Config, and MMKV storage.
  • Theme system (colors / fonts / spacing) and i18n (i18next).
  • SVG support via react-native-svg-transformer (import .svg as a component) — Metro + TypeScript already configured.
  • Environment config: dynamic app.config.js + .env (auto-seeded from .env.example) with a layered, typed Config helper — EXPO_PUBLIC_* vars for client-safe values plus expo.extra (via expo-constants) for build-time config and EAS secrets.
  • EAS build ready: eas.json with development / preview / production profiles wired to APP_ENV.
  • TypeScript strict, path alias @/*src/*.
  • Reanimated 4, gesture-handler, safe-area, keyboard-controller, flash-message and other common packages preinstalled.

CLI behaviour

When you run the CLI it:

  1. Asks for the project name (and a bundle identifier, with a sensible default).
  2. Creates a new project directory and copies the template.
  3. Automatically replaces the project name everywherepackage.json name, app.json (expo.name, slug, scheme), the iOS bundleIdentifier, the Android package, and any other references.
  4. Optionally installs dependencies and initialises git.

Options

| Flag | Description | | -------------------- | --------------------------------------------- | | [project-name] | Project name (positional). Prompted if omitted | | --bundle-id <id> | Reverse-DNS identifier, e.g. com.acme.app | | --no-install | Skip dependency installation | | --no-git | Skip git initialisation | | -y, --yes | Accept all defaults, no prompts | | -h, --help | Show help |

After scaffolding

cd <project-name>
npm install      # if you skipped --install
npm start        # then press i / a / w

Built for Expo SDK 56. Review the versioned docs at https://docs.expo.dev/versions/v56.0.0/ before upgrading.

License

MIT