Deliver APIs at Warp Speed

6x faster than Node/Express. Deploy globally in seconds. Built on Cloudflare Workers.

npx create-sonicjs my-app

Performance That Speaks for Itself

6x
Faster than Node
Blazing fast API responses
200+
Global Edge Locations
Deploy everywhere instantly
100k
Free Daily Requests
Generous free tier

Everything You Need, Nothing You Don't

โšก

SQLite at the Edge

Full database capabilities with D1, replicated globally

๐Ÿ”’

Built-in Auth

JWT authentication and role-based access control out of the box

๐ŸŽจ

Modern Admin UI

Beautiful, intuitive interface for content management

๐Ÿ“˜

100% TypeScript

Type-safe from database to API responses

๐Ÿ”Œ

Powerful Hooks

Extend and customize with lifecycle hooks

๐Ÿš€

Edge-First

Runs on Cloudflare Workers for ultimate speed

Simple Yet Powerful

Define your schema and get an instant REST API:

Define Your Schema

// Define your data model
const schema = {
  name: 'products',
  fields: {
    title: { type: 'string', required: true },
    price: { type: 'number' },
    inStock: { type: 'boolean', default: true },
    category: { type: 'reference', table: 'categories' }
  }
}

RESULT Instant REST API

// Auto-generated endpoints
GET    /api/products
GET    /api/products/:id
POST   /api/products
PUT    /api/products/:id
DELETE /api/products/:id

// With filtering, sorting, pagination
GET /api/products?category=electronics&sort=-price

Get Started in 60 Seconds

Installation

# Create a new SonicJS application
npx create-sonicjs my-app
cd my-app

# Start the development server
npm run dev

# Your CMS is now running at http://localhost:8787

Visit the Quickstart guide for detailed instructions.

Perfect For

๐Ÿš€
Startups
Ship MVPs fast
๐Ÿข
Enterprise
Scale globally
๐Ÿ“ฑ
Mobile Apps
Lightning APIs
๐ŸŽฎ
Gaming
Low latency

"SonicJS cut our API response times by 80%. We're now serving millions of requests daily without breaking a sweat."

  • Engineering Team at TechCo

Ready to Go Supersonic?

Join thousands of developers building the future of web APIs

Recent Updates

๐Ÿ“ข Latest Changes

View Full Changelog โ†’

UNRELEASEDComing Soon
โœ“Magic Link Authentication Plugin - Passwordless login via email (inactive by default)
โœ“Core Auth Enhancements - Plugin extensibility with AuthManager and AuthService
โœ“Experimental Notice Banner - Added to plugins page with Discord community link
v2.0.92025-11-04
โœ“Improved managed collections with explicit registration
โœ“Updated Wrangler to v4.45.4
โœ“Removed experimental flag for Plugins menu
v2.0.62025-11-03
โœ“Merged 3,683+ commits of legacy repository history
โœ“Fixed Cloudflare Workers deployment issues
โœ“Improved documentation and contributor workflows

Actively maintained

โ€ข3,683+ commitsโ€ข7 years of development

Full Changelog โ†’


Resources

Community

Demos

Built with โค๏ธ by developers, for developers โ€ข MIT License - Free Forever

Was this page helpful?