Skip to main content

Quick Start: The Boilerplate

To ease up the developer's workflow to create an app in the Sesami platform, we provide a simple boilerplate created with React, Express, and MongoDB.

You can use this boilerplate to speed up the process of creating apps for Sesami, without the hustle of setting up different technologies.

Why Sesami boilerplate?

Easy to setup

You just need to clone the repository and run the docker compose up, that's it! It will run the database, backend, and the frontend for you.

API Ready

The installation flow, authorization, authentication, and all the API connectivity you need is done by the boilerplate.

App Message implementation

The boilerplate is implemented the App Message inside it and you just need to use the correct hook for your app target.

Initializing the classes, getting token, and all your needs from the App Message is done with the boilerplate.

Lazy Loading

You can use different tools and technologies for different targets, and they will lazy load where needed, so the bundle size will be the minimum.

For example, the boilerplate is using Ant Design in the Admin, to match the app's design to the Admin. But because we want the extensions in the Experience to be as lightweight as possible, we just use pure CSS in it, so the Ant Design will not load there.

Advanced development environment

Developing and testing an app outside a host can be frustrating, but in the Sesami Apps Boilerplate when you are in the development mode, a mock host will wrap your app and talk to it using the App Message, but when you are in the production mode, the wrapper will not enable and the app will listen to the actual host.

Also, since you might not have a valid token or HMAC in development mode, the app's authentication will be temporarily disabled to facilitate development.