This repository contains a local setup for running Strudel, a browser-based live coding environment.
strudel_working/
- Full Strudel repository clonewebsite/
- Contains the Strudel website codedist/
- Built website files (created after building)
-
Navigate to the website directory:
cd strudel_working/website
-
Install all dependencies from the root:
cd .. pnpm install
-
Go back to website directory and build it:
cd website pnpm run build
-
Navigate to the built files and serve them:
cd dist npx serve
-
Open your browser and go to the URL shown in the terminal (typically http://localhost:3000)
- Node.js
- pnpm package manager (
npm install -g pnpm
)
- The website needs to be built before it can be served
- Always run
pnpm install
from thestrudel_working
directory to ensure all workspace dependencies are properly installed - The built website will be in the
dist
directory, which is what needs to be served