Connecting your no-code backend REST API to a user interface

Downloading the sample code

We provide a small front-end app built with React to support this tutorial.

Before you start, make sure you have downloaded and installed a recent version of node.js - which is a pre-requisite for React.

Download the source code from our Github repository.

Github clone button

Open terminal (or Command Prompt, if you're on Windows), and move to the directory of the downloaded code.

cd ...path_to.../todolists_start-main

Install all dependencies with NPM.

npm install

Run the app.

npm start

You should now see the login screen when you open http://localhost:3000 on your browser. The app won't work correctly yet, but we'll fix that soon.

Browser with login screen
Next: Integrating with no-code backend user authentication API