mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 13:48:34 +00:00
32 lines
676 B
Markdown
32 lines
676 B
Markdown
# strudel
|
|
|
|
[](https://github.com/tidalcycles/strudel/actions)
|
|
|
|
An experiment in making a [Tidal](https://github.com/tidalcycles/tidal/) using web technologies. This is unstable software, please tread carefully.
|
|
|
|
Try it here: https://strudel.tidalcycles.org/
|
|
|
|
Tutorial: https://strudel.tidalcycles.org/tutorial/
|
|
|
|
## Local development
|
|
|
|
Run the REPL locally:
|
|
|
|
```bash
|
|
npm install
|
|
npx lerna bootstrap
|
|
cd repl
|
|
npm install
|
|
npm run start
|
|
```
|
|
|
|
## Publish Packages
|
|
|
|
To publish, just run:
|
|
|
|
```sh
|
|
npx lerna version
|
|
```
|
|
|
|
This will publish all packages that changed since the last version.
|