A lightweight, modern content management system built on Cloudflare Workers and StarbaseDB
Get StartedBuilt on Cloudflare Workers and StarbaseDB for incredible performance and zero infrastructure management.
Modern block-based editor for creating rich content with a clean, distraction-free interface.
Schedule content to be published or unpublished at specific dates and times.
RESTful and WebSocket APIs for seamless integration with your frontend applications.
Built-in content versioning with draft and published states for better content management.
WebSocket support for real-time content updates and collaborative editing capabilities.
You'll need a paid Cloudflare account to get started. Deploy your database with a single command:
curl https://starbasedb.com/install.sh | bash
After deployment, you'll receive a URL and token. Use these in our setup page to connect your CMS - we'll handle the rest!
That's it! You're ready to create content using our modern block editor. Your content will be instantly available through our API for your websites and apps.
// Quick example: Fetch published content
fetch('https://your-db.workers.dev/query', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_TOKEN' },
body: JSON.stringify({
sql: 'SELECT * FROM content WHERE status = "published"'
})
})