Skip to Content
Getting StartedQuickstart

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-xd

Follow the interactive prompts to choose:

  • Project name
  • Template type (Basic, REST API, or Socket.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 start for production mode.


Template Options

TemplateDescription
BasicMinimal Express starter for small services or learning.
REST APIFull-featured Express API with CRUD, authentication, and validation.
Socket.ioReal-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 dev

Server starts automatically at:

http://localhost:3000

Next Steps

Last updated on