felixroos / kabelsalat

live coding audio graphs
https://felixroos.github.io/kabelsalat/
GNU Affero General Public License v3.0
14 stars 2 forks source link

kabelsalat

very early experiment to live code audio graphs

felixroos.github.io/kabelsalat

compilation strategy / graph format based on https://noisecraft.app/

examples

Project Setup

You need nodejs v22 and pnpm. Then run pnpm i to install dependencies.

Running Offline

  1. pnpm build to build the site
  2. pnpm preview to serve the build

Develop

Publishing

npm login

# this will increment all the versions in package.json files of non private packages to selected versions
npx lerna version --no-private

# publish all packages inside /packages using pnpm! don't use lerna to publish!!
pnpm --filter "./packages/**" publish --dry-run

# the last command was only a dry-run. if everything looks ok, run this:
pnpm --filter "./packages/**" publish --access public