CKylinMC / remult

Build Full-stack, End-to-end Type-safe CRUD Apps without the Boilerplate

Home Page:https://remult.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remult

A CRUD framework for full-stack TypeScript

CircleCI GitHub license npm version npm downloads Join Discord Twitter URL



Video thumbnail

Watch code demo on YouTube here (14 mins)

What is Remult?

Remult is a full-stack CRUD framework that uses your TypeScript entities as a single source of truth for your API, frontend type-safe API client and backend ORM.

  • ⚡ Zero-boilerplate CRUD API routes with paging, sorting, and filtering for Express / Fastify / Next.js / NestJS / Koa / others...
  • 👌 Fullstack type-safety for API queries, mutations and RPC, without code generation
  • ✨ Input validation, defined once, runs both on the backend and on the frontend for best UX
  • 🔒 Fine-grained code-based API authorization
  • 😌 Incrementally adoptable
  • 🚀 Production ready
  • 📣 NEW - Zero-boilerplate realtime live-queries

Status

Remult is production-ready and, in fact, used in production apps since 2018. However, we’re keeping the major version at zero so we can use community feedback to finalize the v1 API.

Motivation

Full-stack web development is (still) too complicated. Simple CRUD, a common requirement of any business application, should be simple to build, maintain, and extend when the need arises.

Remult abstracts away repetitive, boilerplate, error-prone, and poorly designed code on the one hand, and enables total flexibility and control on the other. Remult helps building fullstack apps using only TypeScript code you can easily follow and safely refactor, and fits nicely into any existing or new project by being minimalistic and completely unopinionated regarding the developer’s choice of other frameworks and tools.

Other frameworks tend to fall into either too much abstraction (no-code, low-code, BaaS) or partial abstraction (MVC frameworks, GraphQL, ORMs, API generators, code generators), and tend to be opinionated regarding the development tool-chain, deployment environment, configuration/conventions or DSL. Remult attempts to strike a better balance.

Installation

The remult package is one and the same for both the frontend bundle and the backend. Install it once for a monolith project or per-repo in a monorepo.

npm i remult

Usage

Define model classes

// shared/product.ts

import { Entity, Fields } from "remult"

@Entity("products", {
  allowApiCrud: true
})
export class Product {
  @Fields.string()
  name = ""

  @Fields.number()
  unitPrice = 0
}

Setup API backend using an Express middleware

// backend/index.ts

import express from "express"
import { remultExpress } from "remult/remult-express"
import { Product } from "../shared/product"

const port = 3001
const app = express()

app.use(
  remultExpress({
    entities: [Product]
  })
)

app.listen(port, () => {
  console.log(`Example API listening at http://localhost:${port}`)
})

🚀 API Ready

> curl http://localhost:3001/api/products

[{"name":"Tofu","unitPrice":5}]

Find and manipulate data in type-safe frontend code

// frontend/code.ts

import { remult } from "remult"
import { Product } from "../shared/product"

async function increasePriceOfTofu(priceIncrease: number) {
  const productsRepo = remult.repo(Product)

  const product = await productsRepo.findFirst({ name: "Tofu" }) // filter is passed through API request all the way to the db
  product.unitPrice += priceIncrease
  productsRepo.save(product) // mutation request updates the db with no boilerplate code
}

...exactly the same way as in backend code

@BackendMethod({ allowed: Allow.authenticated })
static async increasePriceOfTofu(priceIncrease: number) {
  const productsRepo = remult.repo(Product);

  const product = await productsRepo.findFirst({ name: 'Tofu' }); // use Remult in the backend as an ORM
  product.unitPrice += priceIncrease;
  productsRepo.save(product);
}

☑️ Data validation and constraints - defined once

import { Entity, Fields, Validators } from "remult"

@Entity("products", {
  allowApiCrud: true
})
export class Product {
  @Fields.string({
    validate: Validators.required
  })
  name = ""

  @Fields.string<Product>({
    validate: (product) => {
      if (product.description.trim().length < 50) {
        throw "too short"
      }
    }
  })
  description = ""

  @Fields.number({
    validate: (_, field) => {
      if (field.value < 0) {
        field.error = "must not be less than 0" // or: throw "must not be less than 0";
      }
    }
  })
  unitPrice = 0
}

Enforced in frontend:

const product = productsRepo.create()

try {
  await productsRepo.save(product)
} catch (e: any) {
  console.error(e.message) // Browser console will display - "Name: required"
}

Enforced in backend:

> curl http://localhost:3001/api/products -H "Content-Type: application/json" -d "{""unitPrice"":-1}"

{"modelState":{"unitPrice":"must not be less than 0","name":"required"},"message":"Name: required"}

🔒 Secure the API with fine-grained authorization

@Entity<Article>("Articles", {
  allowApiRead: true,
  allowApiInsert: (_, remult) => remult.authenticated(),
  allowApiUpdate: (article, remult) => article.author.id == remult.user.id
})
export class Article {
  @Fields.string({ allowApiUpdate: false })
  slug = ""

  @Field(() => Profile, { allowApiUpdate: false })
  author!: Profile

  @Fields.string()
  content = ""
}

What about complex CRUD?

While simple CRUD shouldn’t require any backend coding, using Remult means having the ability to handle any complex scenario by controlling the backend in numerous ways:

  • Backend computed (read-only) fields - from simple expressions to complex data lookups or even direct db access (SQL)
  • Custom side-effects with entity lifecycle hooks (before/after saving/deleting)
  • Backend only updatable fields (e.g. “last updated at”)
  • Many-to-one relations with lazy/eager loading
  • Roll-your-own type-safe endpoints with Backend Methods
  • Roll-your-own low-level endpoints (Express, Fastify, koa, others…)

Getting started

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

Documentation

The documentation covers the main features of Remult. However, it is still a work-in-progress.

Example Apps

Contributing

Contributions are welcome. See CONTRIBUTING.md.

  • 💬 Any feedback or suggestions? Start a discussion.
  • 💪 Want to help out? Look for "help wanted" labeled issues.
  • ⭐ Give this repo a star.

License

Remult is MIT Licensed.

About

Build Full-stack, End-to-end Type-safe CRUD Apps without the Boilerplate

https://remult.dev

License:MIT License


Languages

Language:TypeScript 96.3%Language:JavaScript 2.2%Language:CSS 1.4%Language:Shell 0.1%Language:HTML 0.0%Language:Svelte 0.0%