NewRoute Logo

Design, Build, and Ship Backend Services Faster

NewRoute is an open source developer tool empowering you to create robust, scalable backend services without the repetitive grunt work. With our API modules you go from idea to MVP in days rather than months

Join the waitlist now, be one of the first to experience NewRoute.

Extend Your Project or Start Fresh With Our Templates

Full code ownership - your code stays yours

litbackend

A cool Node.js API service built with NewRoute.io

TypeScript

24

or

New

Works with

Node.jsNest.jsPostgreSQLMongoDBRedisSupabase

More platforms and environments coming soon

Build Backends That Are Uniquely Yours, Faster Than Ever Before

Say goodbye to repetitive boilerplate. Our extensive library of open-source API modules lets you focus on what matters - your unique business logic.

Stop reinventing the wheel. Start innovating where it counts.

20+ API Modules

Write It Your Way

Generate Code

THE FORGE

Authentication

Plug-n-play open source basic authentication (email + password)

Stripe

Stripe Payments

Seamless integration with Stripe. No hassle.

import { Request, Response } from "express";
import { ProductService } from "@services/ProductService";
import { SearchResult } from "@types";

export const searchProducts = async (req: Request, res: Response): Promise<void> => {
  const { q, limit = "10", page = "1" } = req.query;
  const searchLimit = parseInt(limit, 10);
  const searchPage = parseInt(page, 10);

  const results: SearchResult = await ProductService.search(q, {
    limit: searchLimit,
    page: searchPage,
  });

  res.json({
    success: true,
    data: results.items,
    pagination: {
      total: results.total,
      page: searchPage,
      limit: searchLimit,
    },
  });
};

Genesis AI Co-pilot for intelligent suggestions and code refinements

One-click Deployments to Your AWS Account

PROVISIONING STATION

EC2

EC2

Cloud Service
Docker

Docker

Aurora

Aurora

Cloud Service
MongoDB Atlas

MongoDB Atlas

Cloud Service
EKS

EKS

Your code, your cloud, our expertise. Deploy without compromise.

Open Source API Modules.

Access our growing library of pre-built API modules, allowing you to quickly integrate common backend functionality.

Live Collaboration.

Collaborate with your team - ideate, iterate, and align on the backend system in a shared, visual workspace.

Visual Diagramming Tool.

Visualize and model your entire backend infrastructure using the drag-and-drop canvas.

No Vendor Lock-in.

Your code, your cloud, your way. Maintain full control of your infrastructure by deploying to your own AWS accounts, without any vendor lock-in.

AI-Enabled.

Accelerate your backend development with Genesis, our AI co-pilot. Generate diagrams, write code, and refine your implementation. It's like v0.dev for backend

Provision in Minutes.

With a single click, you can provision your backend services and infrastructure following AWS best practices.

Join the NewRoute Early Access List

Join the waitlist now, be one of the first to experience NewRoute.