test-lifecycle-app
v1.0.1
Published
A MiLost Framework application with UI server
Downloads
2
Maintainers
Readme
test-lifecycle-app
A MiLost Framework application with WebAssembly acceleration.
🚀 Quick Start
# Install dependencies
npm install
# Start development server with live reload
npm run dev
# Build for production
npm run build
# Type check
npm run type-check📁 Project Structure
test-lifecycle-app/
├── src/
│ ├── main.ts # Application entry point
│ ├── internal/ # Framework initialization
│ │ └── bootstrap.ts # WASM and system setup
│ └── views/ # View components
│ └── MainView.ts # Main application view
├── public/
│ └── index.html # HTML template
├── dist/ # Build output (generated)
├── package.json # Dependencies and scripts
└── tsconfig.json # TypeScript configuration🦀 MiLost Framework Features
- 🔥 WASM Acceleration: Native Rust performance in TypeScript
- 🧠 Dynamic Threading: Intelligent performance optimization that chooses optimal strategy automatically
- ⚡ Multi-Strategy Execution: sync (small data), worker (medium), WASM-thread (large)
- 🎯 Browser Detection: Runtime capability detection (SharedArrayBuffer, Web Workers, Atomics)
- 🧩 Type Safety: Full TypeScript support with strict typing
- ⚡ Live Reload: Instant updates during development
- 📦 Zero Config: Everything works out of the box, threading is automatic
- 🎯 Modern: Latest ES2022 features and best practices
🛠️ Available Commands
npm run dev- Start development server with live reloadnpm run build- Build for productionnpm run start- Start production servernpm run clean- Clean build artifactsnpm run type-check- Check TypeScript types
📚 Learn More
Built with ❤️ using MiLost Framework
