Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teropa/generative-music-workshop
A simple seed repo for a workshop on making generative music with Tone.js
https://github.com/teropa/generative-music-workshop
Last synced: 9 days ago
JSON representation
A simple seed repo for a workshop on making generative music with Tone.js
- Host: GitHub
- URL: https://github.com/teropa/generative-music-workshop
- Owner: teropa
- Created: 2017-07-14T09:50:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-08T18:23:26.000Z (almost 6 years ago)
- Last Synced: 2024-04-15T08:11:22.354Z (7 months ago)
- Language: JavaScript
- Size: 488 KB
- Stars: 24
- Watchers: 5
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository contains an extremely simple seed repository for generative music experiments, to be made in the Fullstack2gether workshop.
There are three files in the application:
* `index.html` - the HTML host page.
* `app.js` - for all the JavaScript code.
* `style.css` - for CSS should we need any.Of course, you may add other files if you want to.
Additionally, the `index.html` page loads up [Tone.js](https://tonejs.github.io/) from a CDN.
You can run the app using any HTTP server, but for convenience a `lite-server` dev dependency has been added, so you can spin up a dev server with the following commands:
```
yarn install # Or "npm install"
yarn run start # or "npm run start"
```