create-nuke
v0.0.2
Published
Create a new NukeJS project
Maintainers
Readme
🚀 Create Nuke Project
Scaffold a new NukeJS project in seconds.
Usage
# npm
npm create nuke@latest
# with a project name
npm create nuke@latest my-app
# pnpm / yarn / bun
pnpm create nuke@latest
yarn create nuke
bunx create-nukeRunning the command will:
- Ask for a project name (skipped if provided as an argument)
- Let you pick a template from the available branches
- Download and extract the template
- Ask which package manager to use
- Install dependencies automatically
Options
| Argument | Description |
|---|---|
| [project-name] | Name of the project folder to create. Use . to scaffold into the current directory. |
Development
# install deps
npm install
# run locally
npm run dev
# run with a project name
npm run dev -- my-app
# build for publishing
npm run buildProject Structure
.
├── src/
│ ├── index.ts # CLI entry point
│ └── art.ts # ASCII art
├── dist/ # compiled output (git-ignored)
├── package.json
└── tsconfig.jsonLicense
MIT
