Go to file
Jordan Eldredge b06490dd74
Some checks failed
CI / build-and-test (20.x) (push) Has been cancelled
CI / Publish to NPM (push) Has been cancelled
Revert "Change polyfill (#1278)"
This reverts commit 67e6cdf89d.
2024-10-06 12:16:35 -07:00
.github/workflows Shorter hashes? 2024-10-02 19:38:01 -07:00
.yarn/releases Try locking Yarn version (#1066) 2021-02-13 19:50:09 -08:00
config Get Jest tests passing 2024-03-01 15:30:09 -08:00
examples Upgrade webpack in example 2024-10-02 21:25:58 -07:00
packages Revert "Change polyfill (#1278)" 2024-10-06 12:16:35 -07:00
.editorconfig
.eslintignore Try harder to use monorepo version 2022-09-20 22:07:45 -07:00
.eslintrc Upgrade eslint 2022-05-07 12:35:48 -07:00
.gitattributes Update .gitattributes 2023-03-27 20:26:22 -07:00
.gitignore First attempt at adopting Parcel (#1186) 2023-01-20 11:15:39 -08:00
.parcelrc First attempt at adopting Parcel (#1186) 2023-01-20 11:15:39 -08:00
.prettierignore Fix prettier ignore 2024-03-01 23:50:31 -08:00
.yarnrc Try locking Yarn version (#1066) 2021-02-13 19:50:09 -08:00
deploy.sh First attempt at adopting Parcel (#1186) 2023-01-20 11:15:39 -08:00
LICENSE.txt
netlify.toml Normalize on pointer events since they should work for both mobile and desktop (#1253) 2024-04-21 12:49:06 -07:00
package-lock.json 0.0.0-next-87012d8d 2024-10-02 09:01:51 -07:00
package.json 0.0.0-next-87012d8d 2024-10-02 09:01:51 -07:00
pnpm-lock.yaml Revert "Change polyfill (#1278)" 2024-10-06 12:16:35 -07:00
pnpm-workspace.yaml Checkpoint of pnpm adoption 2024-05-28 21:51:23 +01:00
README.md Remove tests badge (This is in the github ui now) 2024-10-06 11:07:48 -07:00
yarn.lock Upgrade jszip (#1276) 2024-10-02 22:21:51 -07:00

gzip size Discord

Webamp

A reimplementation of Winamp 2.9 in HTML5 and JavaScript with full skin support. As seen on TechCrunch, Motherboard, Gizmodo, Hacker News (1, 2, 3, 4), and elsewhere.

Screenshot of Webamp

Check out this Twitter thread for an illustrated list of features. Works in modern versions of Edge, Firefox, Safari and Chrome. IE is not supported.

Add Webamp to Your Site

Here is the most minimal example of adding Webamp to a page:

<div id="app"></div>
<script src="https://unpkg.com/webamp"></script>
<script>
    const app = document.getElementById("app")
    const webamp = new Webamp();
    webamp.renderWhenReady(app);
</script>

For more examples, including how to add audio files, check out examples/ directory and the API documentation.

About This Repository

Webamp uses a monorepo approach, so in addition to the Webamp NPM module, this repository contains code for a few closely related projects and some pieces of Webamp which are published as standalone modules:

Community

Join our community chat on Discord: https://discord.gg/fBTDMqR

Related communites:

In the Wild

An incomplete list of websites using Webamp:

Thanks

  • Butterchurn, the amazing Milkdrop 2 WebGL implementation. Built and integrated into Webamp by: jberg
  • Research and feature prototyping: @PAEz
  • Beta feedback, catching many small UI inconsistencies: LuigiHann
  • Beta feedback and insider answers to obscure Winamp questions: Darren Owen
  • Donating the webamp NPM module name: Dave Eddy

Thank you to Justin Frankel and everyone at Nullsoft for Winamp which inspired so many of us.

License

While the Winamp name, interface, and, sample audio file are surely property of Nullsoft, the code within this project is released under the MIT License. That being said, if you do anything interesting with this code, please let me know. I'd love to see it.