@exezt-/webamp 1.5.0-0x1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -0
- package/built/webamp.bundle.js +37228 -0
- package/built/webamp.bundle.min.js +70 -0
- package/built/webamp.lazy-bundle.js +19521 -0
- package/built/webamp.lazy-bundle.min.js +51 -0
- package/index.d.ts +277 -0
- package/package.json +147 -0
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Webamp NPM Module
|
|
2
|
+
|
|
3
|
+
## Development
|
|
4
|
+
|
|
5
|
+
I do most development by starting the demo site in dev mode and iterating that way. The following commands will install all dependencies, run an initial development build and then start a local server. Every time you save a file, it will rebuild the bundle and automatically refresh the page.
|
|
6
|
+
|
|
7
|
+
# First clone the repo, then...
|
|
8
|
+
cd webamp
|
|
9
|
+
# Change into the NPM module's sub directory
|
|
10
|
+
cd packages/webamp
|
|
11
|
+
# __Note:__ Please use yarn over npm, since yarn will respect our `yarn.lock` file
|
|
12
|
+
yarn install
|
|
13
|
+
yarn start
|
|
14
|
+
|
|
15
|
+
`http://localhost:8080/` should automatically open in your browser.
|
|
16
|
+
|
|
17
|
+
# Run tests and lint checks
|
|
18
|
+
yarn test
|
|
19
|
+
|
|
20
|
+
## Building
|
|
21
|
+
|
|
22
|
+
The NPM module is built separately from the demo site. To build it run:
|
|
23
|
+
|
|
24
|
+
yarn run build-library
|
|
25
|
+
|
|
26
|
+
This will write files to `./built`.
|
|
27
|
+
|
|
28
|
+
## Testing
|
|
29
|
+
|
|
30
|
+
yarn test
|
|
31
|
+
|
|
32
|
+
This will run the tests the linter and the type checker.
|
|
33
|
+
|
|
34
|
+
To update snapshots run
|
|
35
|
+
|
|
36
|
+
yarn test -u
|
|
37
|
+
|
|
38
|
+
## Reference
|
|
39
|
+
|
|
40
|
+
- [skinspecs.pdf](http://members.xoom.it/skinart/tutorial/skinspecs..pdf)
|
|
41
|
+
- [Skinner's Atlas 1.5 by Jellby](http://forums.winamp.com/showthread.php?p=951257)
|
|
42
|
+
- [Winamp Skinning Tutorial](http://people.xmms2.org/~tru/promoe/Winamp_skinning_tutorial_1_5_0.pdf)
|
|
43
|
+
- Sacrat Skinning tutorial parts [1](http://www.hugi.scene.org/online/hugi26/hugi%2026%20-%20graphics%20skinning%20sacrat%20winamp%20skinning%20tutorial%20-%201.htm), [2](http://www.hugi.scene.org/online/hugi26/hugi%2026%20-%20graphics%20skinning%20sacrat%20winamp%20skinning%20tutorial%20-%202.htm), [3](http://www.hugi.scene.org/online/hugi26/hugi%2026%20-%20graphics%20skinning%20sacrat%20winamp%20skinning%20tutorial%20-%203.htm), [4](http://www.hugi.scene.org/online/hugi26/hugi%2026%20-%20graphics%20skinning%20sacrat%20winamp%20skinning%20tutorial%20-%204.htm), and [5](http://www.hugi.scene.org/online/hugi26/hugi%2026%20-%20graphics%20skinning%20sacrat%20winamp%20skinning%20tutorial%20-%205.htm),
|
|
44
|
+
- [Winamp Wiki](http://wiki.winamp.com/wiki/Creating_Classic_Skins)
|
|
45
|
+
|
|
46
|
+
## Predecessors
|
|
47
|
+
|
|
48
|
+
- [Webamp2x](http://forums.winamp.com/showthread.php?threadid=91850) An
|
|
49
|
+
impressive implementation from 2002(!).
|
|
50
|
+
- [JsAmp](http://freecog.net/2005/jsamp/demo/MainWindow.xhtml) An implementation from 2005 by @twm (via [Hacker News](https://news.ycombinator.com/item?id=15317723)).
|
|
51
|
+
- [LlamaCloud Comp](https://vimeo.com/20149683) From 2011 by [Lee Martin](http://www.leemartin.com/) (via [Twitter](https://twitter.com/leemartin/status/910235793737814017))
|
|
52
|
+
- [Winamp em HTML5 e Javascript](http://www.tidbits.com.br/winamp-em-html5-e-javascript)
|
|
53
|
+
In 2010 a developer named Danilo posted one of his HTML5 experiments: "an
|
|
54
|
+
audio player simulating good old Winamp". You will have to download the zip
|
|
55
|
+
file.
|
|
56
|
+
- [JuicyDrop](http://cggaurav.github.io/juicydrop/) An HTML5 implementation with
|
|
57
|
+
less emphasis on being true to the skin, but fully featured visualizations.
|
|
58
|
+
@cggaurav is keeping it alive on [GitHub](https://github.com/cggaurav/juicydrop)
|
|
59
|
+
- [Spotiamp](https://web.archive.org/web/20160109180426/http://spotiamp.com/)
|
|
60
|
+
The folks at Spotify reimplemented Winamp as a frontend for Spotify. Not in a
|
|
61
|
+
browser, and only runs on Windows. It has since been discontinued.
|