3Live demo of [minwebide](https://github.com/magland/minwebide) — a
4minimalistic web IDE built from VS Code's own source code, with the file
5system persisted in your browser's IndexedDB.
7**Live site:** https://concept-collection.github.io/minwebide-demo/
9Things to try:
11- Open files from the Explorer; edit and press **Ctrl+S**; reload — changes persist.
12- `data/measurements.csv` opens as a table; `README.md` has a markdown preview
13 (icons in the tab bar switch representations).
14- Open `scripts/sine-wave.js` and press **▶**: console output goes to the
15 bottom Output panel, plots render in the secondary side bar.
16- Search across files from the activity bar.
18## Development
20minwebide is consumed as a sibling checkout (`file:../minwebide`):
22```sh
23git clone https://github.com/magland/minwebide ../minwebide
24(cd ../minwebide && npm install) # fetches the pinned VS Code source
25npm install
26npm run dev
27```
29CI does the same: the deploy workflow checks out `magland/minwebide` next to
30this repo, installs both, builds, and publishes `dist/` to GitHub Pages.