create-next-app-no-deps
v14.2.18
Published
Create a MODIFIED Next.js-powered React apps with one command (without dependancy installation
Downloads
262
Readme
create-next-app-no-deps
Create Next.js applications without automatically installing dependencies. This is a modified version of create-next-app
that skips the dependency installation step, allowing you to review and customize dependencies before installing them.
Usage
npx create-next-app-no-deps@latest my-app
Features
- Creates Next.js project structure
- Skips automatic dependency installation
- Supports TypeScript and JavaScript templates
- Configurable project settings
- Includes all standard create-next-app templates and configurations
Why use this?
- Review dependencies before installation
- Customize package.json before running npm install
- Faster initial project creation
- Better control over dependency versions
- Useful in environments with strict dependency requirements
After Creation
- Review your package.json
- Modify dependencies as needed
- Run
npm install
manually
License
MIT
Credits
Based on the official create-next-app by Vercel