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

@dartix-software-solutions/create-fullstack-app

v2.0.21

Published

CLI tool to scaffold full-stack applications with pluggable architecture

Downloads

2,555

Readme


✨ Overview

create-fullstack-app walks you through an interactive wizard and emits a project tailored to your choices. Generated code is a starting point: install dependencies, follow the printed next steps and the generated README, and configure .env for your environment.


🚀 Quick start

Run from the directory where the new project folder should be created:

npx @dartix-software-solutions/create-fullstack-app@latest

npm create (same package):

npm create @dartix-software-solutions/fullstack-app@latest

Global install:

npm install -g @dartix-software-solutions/create-fullstack-app
create-fullstack-app

| Tip | Detail | |-----|--------| | 📝 Project name | The wizard asks for it first. | | ⚡ Defaults | Use --yes / -y where supported to accept defaults faster. | | 📁 Target folder | Must be missing or empty. If it already contains files, the CLI exits with an error to avoid overwriting work. |


🧩 Feature matrix

| Area | What you can choose | |------|---------------------| | 🏗️ Layouts | Monorepo (apps + packages), single repo, or microservices-style tree; Turborepo, Nx, or basic workspace where applicable. | | 📦 Project types | SaaS, API-only, admin, mobile, full web + API—options depend on structure and scope. | | 📌 Package manager | npm, pnpm, yarn, or bun. | | 🌐 Web | Next.js, Vite (React), Remix, Astro, SvelteKit, Vue (Vite), or none. | | 📱 Mobile | Expo, React Native (CLI), or Flutter. Expo → Expo Router and RN CLI → React Navigation by default; override in the wizard when both nav options exist. | | 🎨 Styling & UI | Tailwind, Shadcn UI, MUI, Chakra, Ant Design, Styled Components, or vanilla CSS (stack-dependent). | | 🔄 Client state & data | TanStack Query, Zustand, Redux Toolkit, Jotai, MobX, or none; forms; Axios / tRPC / GraphQL clients; charts, tables, motion, dates, icons. | | ⚙️ Backends | NestJS, Express, Fastify, FastAPI, Hono, Koa, Django, Spring Boot, and more. | | 🔌 APIs | REST, tRPC, GraphQL, gRPC where supported; validation, OpenAPI, CORS, security headers, rate limits. | | 🗄️ Data | PostgreSQL, MySQL, MongoDB, SQLite, Redis; Prisma, Drizzle, TypeORM, Mongoose, Django ORM, etc. | | 🔐 Auth | JWT, NextAuth, Clerk, Auth0, Firebase, Supabase, Lucia, and more. | | ✅ Quality & tests | ESLint, Prettier, Husky, lint-staged, Commitlint, EditorConfig; Jest, Vitest, Cypress, Playwright, Detox, and related plugins. | | 🚢 Ops & deploy | Docker, Compose, Kubernetes hints, GitHub Actions; Vercel, AWS, Railway, Render, and others. | | 🧰 Backend extras | Queues, cron, email, uploads, WebSockets, Swagger, and more. | | 🤖 AI (optional) | Plugins with OpenAI- or cloud-oriented env vars and starter wiring. |


🛠 How it works

Generation is plugin-driven: each concern (frontend, backend, auth, testing, …) contributes metadata, dependencies, and Handlebars templates. Layouts (single app, monorepo, microservices) decide output paths and how many package.json targets you get.

The wizard collects answers, resolves active plugins, runs compatibility checks, then writes everything through one pipeline—so new stacks are added by extending plugins, not one-off scripts.


📋 Requirements

  • Node.js 18+ — required for the CLI and for many generated stacks.

🔗 Links

| | | |--|--| | 👤 Developer | Devesh Maurya | | 🏢 Dartix | dartix.live | | 📰 Blog | Building create-fullstack-app (internals, releases) | | 📦 npm | @dartix-software-solutions/create-fullstack-app |


💬 Help, contributing & contact

Questions about requirements, usage, or contributing (plugins, docs, bug reports)? Reach out anytime:

📧 [email protected]

Whether you are stuck on a generated stack, want to propose a feature, or discuss collaboration, send a short note with context (CLI version, OS, and what you tried) and we will go from there.


📜 Changelog

2.0.15

  • Single-app fullstack installs: Removed root workspace coupling for this mode; dependencies now install dynamically in real package targets (client / server) instead of forcing root install behavior.
  • Script routing: Fixed script target resolution so devtool scripts (lint, format) map to frontend/backend package targets when root is not used in single-app fullstack.
  • Devtool config placement: ESLint and Prettier config files now generate per package (client + server) for single-app fullstack, while preserving root behavior for other structures.
  • Prisma 7 migration: Updated Prisma plugin to modern setup (prisma@7, @prisma/client@7, @prisma/adapter-pg), added prisma.config.ts, removed datasource.url from schema.prisma, and moved Postgres client creation to adapter-based initialization.
  • Tailwind latest (web): Updated Tailwind scaffolding to v4-style setup (@import "tailwindcss";, @tailwindcss/postcss plugin in PostCSS config) and refreshed content globs for broader framework file coverage.
  • Formik sample form fix: Reworked Next.js sample Formik template to avoid fragile inline object-style syntax in .hbs and use class-based markup for stable generation.
  • Template/render stability fixes: Continued hardening around plugin output mapping and template generation edge cases uncovered in real npx runs.

2.0.0

Major release — plugin + layout generator is the supported baseline for issues and PRs.

  • Breaking: Removed the legacy imperative src/setup/ pipeline; scaffolding runs only through wizard → generate().
  • CLI: Published bin at dist/bin/create-fullstack-app.js; optional repo-root bin/ wrapper runs the built CLI after npm run build.
  • Mobile: Expo defaults to Expo Router; React Native CLI defaults to React Navigation; wizard overrides win.
  • Tooling: --version aligned with package version; .gitignore includes *.tgz.

0.1.4

  • Pluggable generator (layouts + plugin meta / file-map / templates); wizard wired to generate().
  • README behavior notes (empty target dir; mobile navigation defaults).

0.1.1

  • Full npm README; README.md in published files.
  • Root .gitignore for Node/TS builds.
  • CI publish on v* tags with version check.

0.1.0

  • Initial public interactive scaffolding CLI.

📄 License

MIT