Keep the Node.js build you already use
Install from the committed lockfile and run the project's existing build script. JavaScript and TypeScript applications keep their normal package layout and commands.
Deploy a persistent Node.js web process or worker from its existing package scripts, with release health, logs, secrets, routing, and Git history attached.
Candidate release
Node.js
SOURCE
Git
REGION
de
ROUTE
HTTPS
01Source received
02Build completed
03Runtime started
04Health check passed
Promoted route
production.adios.run
A production path for
The production path
The application or service is only one part of production. Build evidence, runtime state, health, secrets, logs, routes, and the promoted version should remain inspectable together.
Install from the committed lockfile and run the project's existing build script. JavaScript and TypeScript applications keep their normal package layout and commands.
Start the production entrypoint, bind to the declared port, and require a health response before the candidate becomes the current release.
Build output, runtime logs, health state, secrets, domains, and the promoted release stay attached to the project instead of being split across unrelated tools.
From source to release
Use the source and production behavior the project already has. The manifest records what the platform should build or provision and how the result becomes ready.
Bring the existing repository, or inspect and deploy one of the exact starter variants linked below.
$adios loginKeep commands, runtime or service version, health behavior, and secret references in adios.yaml.
$git diff -- adios.yamlFollow build and runtime evidence, verify the candidate, and open the promoted route or service connection.
$adios upname: node-service
build_cmd: npm ci && npm run build
start_cmd: node dist/server.js
runtime:
name: node@24
port: 8080
health_path: /healthzDeployable starting points
Choose Express, Fastify, or NestJS when you want a framework-specific starting point, or inspect Hono for a smaller API surface.
API starters
Express, Fastify, Hono, and NestJS starters with production-ready start commands.
git clone https://github.com/adiosdotdev/templates.git
cd templates/nodejs/express
adios upAPI starters
Express, Fastify, Hono, and NestJS starters with production-ready start commands.
git clone https://github.com/adiosdotdev/templates.git
cd templates/nodejs/fastify
adios upAPI starters
Express, Fastify, Hono, and NestJS starters with production-ready start commands.
git clone https://github.com/adiosdotdev/templates.git
cd templates/nodejs/hono
adios upAPI starters
Express, Fastify, Hono, and NestJS starters with production-ready start commands.
git clone https://github.com/adiosdotdev/templates.git
cd templates/nodejs/nestjs
adios upBefore production
The safest first release starts with a reproducible build or service configuration and a preview that exercises the dependencies production will actually use.
Questions, answered
Review the runtime or service boundary, template path, failure behavior, and production checks before creating the first release.
Yes. Run the Adios CLI from the project root, keep the repository and dependency files you already use, and add an adios.yaml file that describes the production build, start command, port, and health path.
Not for a standard supported runtime. Use the project's normal production commands in adios.yaml. If the build needs unusual operating-system packages or native libraries, verify those dependencies in a preview before promotion.
Use the package manager and lockfile already chosen by the repository, then put its deterministic install and production commands in adios.yaml.
Yes. Give the worker a persistent start command and define a useful health strategy. Test retry, shutdown, and dependency failure behavior independently from web traffic.
The candidate release keeps its build and runtime output for inspection. It must report healthy before it becomes the promoted version serving the application route.
Yes. This page links to the closest official Adios Node.js starters. Inspect the exact source variant, deploy it in the console, or clone it locally and run adios up.
Related deployment paths
Run an Express API as a persistent Node.js process with its install command, port, health endpoint, secrets, logs, and promoted release connected.
Deploy a Fastify service from its existing Node.js source, bind it to the production port, verify readiness, and inspect the exact build serving traffic.
Build a NestJS application from source, start the emitted production entrypoint, verify dependency readiness, and keep deployment evidence beside the project.
Deploy scheduled jobs, webhook processors, approval gates, maintenance tasks, and operational automation from a versioned workflow manifest.
The first release
Start from the repository or a template, review the deployment contract, and inspect what becomes the promoted production version.