Skip to content
On this page

Introduction

Remult is a fullstack CRUD framework that uses your TypeScript model types to provide:

  • Secure REST API (highly configurable)
  • Type-safe frontend API client
  • Type-safe backend query builder

Use the same model classes for both frontend and backend code

With Remult it is simple to keep your code DRY and increase development speed and maintainability by defining a single TypeScript model class (for each domain object) and sharing it between your frontend and backend code.

As Remult is "aware" of the runtime context (frontend or backend), data validations and entity lifecycle hooks can be written in layer-agnostic TypeScript which will run, as needed, on either the frontend, the backend, or both.

Learn by doing

The best way to learn Remult is by following a tutorial of a simple Todo web app with a Node.js Express backend.

MIT Licensed | Made by the Remult team with ❤️