A Vite-based experimental playground with multiple modules for learning and practicing.
Put each experiment in a sandboxs/<name>/ folder and access it via the /sandboxs/<name>/ route.
Agent development practices, experiments, and optimizations.
Includes Reimplementing-Masterpieces as a submodule for studying and reimplementing elegant engineering solutions.
- Install dependencies:
npm install- Start the development server:
npm run devThe server will start at http://localhost:8030 and automatically open the browser.
- Create a new experiment:
- Create a new folder
my-widgetundersandboxs/ - Write your page in
sandboxs/my-widget/index.html - Open
http://localhost:8030/sandboxs/my-widget/in your browser
| Command | Description |
|---|---|
npm run dev |
Start Vite dev server with HMR |
npm run build |
Build production version to dist/ |
npm run preview |
Preview the production build |
- Fast startup with Vite and Hot Module Replacement (HMR)
- Automatic scanning of all folders under
sandboxs/ - Independent HTML/CSS/JS for each folder
- Modern JavaScript and ES modules support
- Homepage automatically lists all available examples
A demo is included in sandboxs/demo.