
Appwrite Has a Free Backend-as-a-Service — Build Full-Stack Apps Without Server Code
Appwrite is an open-source Backend-as-a-Service that handles auth, databases, storage, and more. What You Get for Free (Cloud) Authentication — email/password, OAuth (Google, GitHub, Apple, 30+ providers), phone, magic link Databases — document-based with real-time subscriptions, relationships, permissions Storage — file uploads with image transformations (resize, crop, convert) Functions — serverless functions in Node.js, Python, Dart, Ruby, PHP, Go, and more Messaging — push notifications, email, SMS Real-time — WebSocket subscriptions on any collection 75+ SDKs — Web, Flutter, React Native, iOS, Android, and server-side Quick Start # Cloud: cloud.appwrite.io (free tier: 75K requests/mo) # Self-hosted docker run -d --name appwrite \ -p 80:80 -p 443:443 \ appwrite/appwrite:latest # Create a project via dashboard, then in your app: # npm install appwrite import { Client , Databases } from ' appwrite ' ; const client = new Client () . setEndpoint ( ' https://cloud.appwrite.io/v1 ' ) . s
Continue reading on Dev.to Webdev
Opens in a new tab



