Skip to content

Build a Full-Stack Next.js Application

Create a simple todo app with Remult using Next.js

In this tutorial, we are going to create a simple app to manage a task list. We'll use Next.js, and Remult as our full-stack CRUD framework. For deployment to production, we'll use Vercel and a PostgreSQL database.

By the end of the tutorial, you should have a basic understanding of Remult and how to use it to accelerate and simplify full stack app development.

Prerequisites

This tutorial assumes you are familiar with TypeScript, React and Next.js.

Before you begin, make sure you have Node.js and git installed.

Setup for the Tutorial

This tutorial requires setting up a Next.js project and a few lines of code to add Remult.

You can either use a starter project to speed things up, or go through the step-by-step setup.

Option 1: Clone the Starter Project

  1. Clone the remult-nextjs-todo repository from GitHub and install its dependencies.
sh
git clone https://github.com/remult/nextjs-app-starter.git remult-nextjs-todo
cd remult-nextjs-todo
npm install
  1. Open your IDE.
  2. Open a terminal and run the dev npm script.
sh
npm run dev

The default Next.js app main screen should be displayed (except for the styles which were modified for the tutorial).

At this point, our starter project is up and running. We are now ready to move to the next step of the tutorial and start creating the task list app.

Option 2: Step-by-step Setup

Create a Next.js project

  1. Create the new Next.js project.
sh
npx -y create-next-app@latest remult-nextjs-todo

Answer the questions as follows:

sh
 Would you like to use TypeScript? ... Yes
 Would you like to use ESLint? ... No
 Would you like to use Tailwind CSS? ... No
 Would you like to use `src/` directory? ...  Yes
 Would you like to use App Router? (recommended) ... Yes
 Would you like to customize the default import alias? ... No
  1. Go to the created folder.
sh
cd remult-nextjs-todo

Install Remult

sh
npm i remult

Bootstrap Remult in the back-end

Remult is bootstrapped in a Next.js using a catch all dynamic API route, that passes the handling of requests to an object created using the remultNextApp function.

  1. Open your IDE.

  2. Create an api directory within the app folder, and inside it, create a [...remult] subdirectory. Inside the app/api/[...remult] directory, craft a route.ts file with the following code. This file functions as a catch all route for the Next.js API route, effectively managing all incoming API requests.

ts
// src/app/api/[...remult]/route.ts

import { remultNextApp } from 'remult/remult-next'

const api = remultNextApp({})

export const { POST, PUT, DELETE, GET } = api

Enable TypeScript decorators

Add the following entry to the compilerOptions section of the tsconfig.json file to enable the use of decorators in the React app.

json
// tsconfig.json

{
...
  "compilerOptions": {
    ...
    "experimentalDecorators": true // add this
   ...
  }
...
}

Run the app

Open a terminal and start the app.

sh
npm run dev

The default Next.js main screen should be displayed.

Remove Next.js default styles

The Next.js default styles won't fit our todo app. If you'd like a nice-looking app, replace the contents of app/globals.css with this CSS file. Otherwise, you can simply delete the contents of app/globals.css.

Setup completed

At this point, our starter project is up and running. We are now ready to move to the next step of the tutorial and start creating the task list app.

MIT Licensed | Made by the Remult team with ❤️