webamp/experiments/modern
Jordan Eldredge dd02f2ca7d Use asyncTreeFlatMap instead of asyncTreeMap
FlatMap is more powerful than map. More importantly, I only want to maintain one tree map function if I can help it.
2019-07-20 17:04:54 -07:00
..
public add simple skin (#801) 2019-07-05 17:12:33 -07:00
resources Check in skin tutorial 2019-06-25 23:18:37 -07:00
src Use asyncTreeFlatMap instead of asyncTreeMap 2019-07-20 17:04:54 -07:00
.env Avoid annoying message when running yarn commands 2019-07-19 20:58:47 -07:00
.gitignore Start sketching out modern skins 2019-06-09 22:40:30 -07:00
package.json Implement more operators and add debugger 2019-07-11 20:57:18 -07:00
README.md Move the maki-interpreter experiment into the modern experiment 2019-07-05 17:20:24 -07:00
yarn.lock Implement more operators and add debugger 2019-07-11 20:57:18 -07:00

Modern Winamp Skins

This package is part of an experiment to see if we could bring "modern" Winamp skins to the browser. It's still very early. If you have any qeustions or are interested in getting involved, feel free to check out our Discord server.

Maki Interpreter

One of the biggest challenges to this project is that modern skins could define their own behavior by writing scripts in a custom language called Maki (Make a Killer Interface). One of the critical pieces of this project will be to write a working Maki interpreter and runtime in browser-compatible JavaScript. We have made good progress on this front. The work on that project lives in src/maki-interpreter and has its own readme.

Running

This project is very incomplete. Still, you can see some of what we have working so far by starting a dev server. The project was boot strapped with Create React App so you can get it running with:

yarn
yarn start

Tests

Some things have tests. You can run them by running yarn test in this directory. Note that they do not currently run as part of his repostiorie`s Travis tests.