Quickstart
Spin up a new Node.js project with nodebuilder-xd in seconds — no setup required.
Create a New Project
Run the CLI command:
npx nodebuilder-xdFollow the interactive prompts to choose:
- Project name
- Template type (
Basic,REST API, orSocket.io) - Include CRUD? (Yes / No)
After Scaffolding
Once generation completes, enter your new project and start developing:
cd <project-name>
npm install
npm run dev[!TIP] You can also use
npm startfor production mode.
Template Options
| Template | Description |
|---|---|
| Basic | Minimal Express starter for small services or learning. |
| REST API | Full-featured Express API with CRUD, authentication, and validation. |
| Socket.io | Real-time server setup using Express + Socket.io. |
Example Workflow
npx nodebuilder-xd
# Select: REST API
# Include CRUD: No
cd my-app
npm install
npm run devServer starts automatically at:
http://localhost:3000Next Steps
- Review CLI Usage
- Learn Folder Structure
- Explore REST API Template
Last updated on