Getting Started
Nimbus deploys serverless functions to an edge network in seconds. This page gets you from zero to a deployed function.
Install the CLI
Section titled “Install the CLI”npm install -g @nimbus/clipnpm add -g @nimbus/cliyarn global add @nimbus/clicurl -fsSL https://nimbus.dev/install.sh | shCreate your first project
Section titled “Create your first project”-
Authenticate the CLI with your Nimbus account:
Terminal window nimbus login -
Scaffold a new project:
Terminal window nimbus init my-appcd my-app -
Start the local dev server, which emulates the edge runtime:
Terminal window nimbus dev -
Deploy:
Terminal window nimbus deploy
Next steps
Section titled “Next steps”- Deploy your first function — walk through a complete function from code to production.
- Architecture — understand how requests flow through the edge network.
- CLI reference — every
nimbuscommand.