@devkitlab/create-nextjs
v1.0.2
Published
Create a DevkitLab Next.js starter app with TypeScript and Tailwind CSS.
Maintainers
Readme
@devkitlab/create-nextjs
Scaffold a DevkitLab Next.js starter with TypeScript, Tailwind CSS, and a ready-to-extend project structure.
Why Use It
- Start faster with an opinionated Next.js setup
- Skip repetitive project bootstrapping
- Get a clean base for content-driven or product-focused apps
- Use a starter that already includes common developer tooling
What You Get
- Next.js App Router
- TypeScript
- Tailwind CSS
- ESLint and Prettier
- Husky and lint-staged
- Reusable starter structure for components and app sections
Installation
Create a new app with:
npx @devkitlab/create-nextjs@latest my-appThen move into the project and install dependencies:
cd my-app
npm install
npm run devYou can also use pnpm or yarn instead of npm.
Getting Started
After installation:
- Create a
.env.localfile if you need environment variables. - Start the development server with
npm run dev. - Open
http://localhost:3000. - Begin editing the generated app.
Generated Project Highlights
- App code lives in
app/ - Shared UI and utilities live in
src/ - Static assets live in
public/ - Tailwind is preconfigured
- Linting and formatting are already set up
Who It’s For
This starter is useful if you want:
- a modern Next.js + TypeScript base
- Tailwind configured out of the box
- a starter that can grow into a CMS-backed app
- a reusable foundation for client projects or internal tools
