Skip to content
/ aper Public

🎵 A simple music player built with solid.js and howler.js

License

Notifications You must be signed in to change notification settings

xhofe/aper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aper

🎵 A simple music player built with solid.js and howler.js.

release npm npm license sponsor

Installation

pnpm add aper

Demo

https://xhofe.github.io/aper/

Usage

import Aper from "aper"
import 'aper/dist/style.css'

const ap = new Aper({
  container: document.getElementById("root") as HTMLElement,
  audios: [
    {
      name: "name",
      url: "https://demo/name.flac",
      artist: "artist",
      lrc: "https://demo/name.lrc",
    },
    ...
  ],
})