Build with the App Builder
The fastest way to create a Modelence app - no local setup needed.Go to Modelence Cloud
Open cloud.modelence.com and sign up for a free account.
Create an app
Describe what you want to build in the prompt field. For example:
“A task management app with user accounts, project boards, and due date reminders”The App Builder will generate your full application - frontend, backend, database, and hosting - in minutes.
Iterate on your app
Once your app is generated, you can continue chatting with the App Builder to refine it. Ask it to add features, change the design, fix issues, or adjust functionality.
Developer Quick Start (CLI)
If you prefer working locally with your own editor and terminal, you can scaffold a project with the Modelence CLI.Prerequisites
Node.js
Node.js
Node.js version 18.0 or aboveIf you see version numbers displayed for both commands, you’re ready to start building with Modelence!
- When installing Node.js, make sure to check all checkboxes related to dependencies
- Node.js installation includes NPM (Node Package Manager) which is required
- You can verify your installation by running:
Creating a new project
You can create a new Modelence project using thecreate-modelence-app command.
my-app with the necessary files and folders for your project.
Project structure
For a detailed breakdown of the project structure, see Project Structure.Start your application
Run the development server
Start the development server:The
npm run dev command builds your website locally and serves it through a Vite development server,
ready for you to view at http://localhost:3000/ (or the port you specified in the .env file).