Skip to Content
Getting StartedQuickstart

Quickstart

Spin up a new Node.js backend using JavaScript or TypeScript with NeatNode — no setup required.


Create a New Project

Run the CLI command:

npx neatnode

Follow the interactive prompts to choose:

  • Project folder name
  • Language (JavaScript or TypeScript)
  • Template type (Basic, REST API, or Socket.IO)
  • Include example CRUD? (Yes / No)

After Scaffolding

Once generation completes, enter your project and start the dev server:

cd <project-name> npm install npm run dev

[!TIP] Use npm start for production mode (if available in the template).


Example Workflow

npx neatnode # Enter project folder name: my-app # Select language: JavaScript (or TypeScript) # Choose template: REST API # Include CRUD: No cd my-app npm install npm run dev

Server starts at:

http://localhost:5000

[!NOTE] Explore all available templates in the Templates section.