Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 486 Bytes

File metadata and controls

22 lines (15 loc) · 486 Bytes

CQS

CQS serializes the app state and event listeners, allowing it to "resume" where the server left off without needing to re-execute initialization code. Chunks are loaded on demand, so apps can boot instantly with ~1kb of JS. Performance is consistent at any size or complexity.

Features

  • Resumability
  • Lazy loading
  • Edge optimization

Development

# Install dependencies
pnpm install

# Start development server
pnpm dev

# Build for production
pnpm build