Skip to main content

Installation

Ready to leave boilerplate behind and build your first Nubie app?
Great choice. Let’s get you up and running — fast, clean, and frustration-free.

1. Create a New Project

Start by cloning the official starter template:

git clone https://github.com/ronitkrshah/nubie-starter-template.git MyApi --depth=1

Then install the dependencies using your preferred package manager:

cd MyApi
npm install # or yarn / pnpm install

2. Build & Run

Compile your TypeScript project and start the server:

npx tsc && node dist/index.js

That's it — your API is now live.

Pro tip: The starter comes pre-configured with decorators, DI, validation, and error handling — so you can focus on building features, not setup code.