What runs locally
The dev server handles these features entirely on your machine:- Functions: Backend functions run locally with automatic reload on file changes.
- Entities: Entity data is stored in a local in-memory database. Schema changes are picked up automatically.
- Media: File uploads are saved locally.
Function
automations
don’t run locally.
What’s forwarded
Some features aren’t handled locally yet. When the dev server receives a request it can’t serve, it forwards it to your deployed app so the call still works. The server logs a warning each time this happens. Forwarded features include:- Authentication: OAuth and login routes are redirected to Base44 so session cookies work correctly.
- User entity: Reads from the
Userentity always go to production. - Core integrations: Endpoints like
SendEmailor AI generation are forwarded. File uploads are the exception and run locally. - Custom integrations: API calls configured through OpenAPI specifications.
Functions
Backend functions run locally on your machine. You can call them from your frontend just like deployed functions.- Each function runs as a separate Deno process, which must be installed separately.
- Functions reload automatically when you edit the source code.
- Function output is printed directly to your terminal. You don’t need to use
base44 logsduring local development.
The first request to a function may be slower because the dev server starts
the process on demand. Subsequent requests reuse the running process.
Entities
Entity operations go to a local in-memory database instead of the remote database. This lets you create, read, update, and delete records without affecting your production data.- All data is stored in memory and is cleared when you stop the dev server.
- Schema changes are picked up automatically. Changing an entity schema clears all in-memory data for that entity.
- Realtime subscriptions work locally. If your frontend uses
entities.subscribe(), it receives events for local entity changes. - The
Userentity is a special case. Reads are always forwarded to the production backend because user records are managed by Base44’s authentication system.
Media
File uploads are handled locally so you can test media features without uploading to production storage. Files are saved to a temporary directory and cleaned up when the dev server stops. The maximum file size is 50 MB.See also
- Setup: Prerequisites and step-by-step instructions
- Backend functions: Write serverless functions that run on Base44’s infrastructure
- Entities: Define data models for your app
- Project structure: How project files are organized

