https://github.com/derhuerst/fasp-web-client
A web app to control Friendly Audio Streaming Protocol receivers.
https://github.com/derhuerst/fasp-web-client
audio fasp streaming
Last synced: 12 months ago
JSON representation
A web app to control Friendly Audio Streaming Protocol receivers.
- Host: GitHub
- URL: https://github.com/derhuerst/fasp-web-client
- Owner: derhuerst
- License: isc
- Created: 2018-04-11T23:24:04.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-12-02T19:08:37.000Z (over 6 years ago)
- Last Synced: 2025-06-01T00:21:03.733Z (about 1 year ago)
- Topics: audio, fasp, streaming
- Language: JavaScript
- Homepage: https://github.com/derhuerst/fasp-web-client#fasp-web-client
- Size: 73.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# fasp-web-client
**A web app to control [Friendly Audio Streaming Protocol](https://github.com/derhuerst/friendly-audio-streaming-protocol) receivers.**
[](https://www.npmjs.com/package/fasp-web-client)

[](https://gitter.im/derhuerst)
[](https://patreon.com/derhuerst)
The [npm package](https://www.npmjs.com/package/fasp-web-client) contains a `dist` directory, which contains all necessary files for the web client.
Using [Express](https://expressjs.com/), you can serve them like this:
```js
const serve = require('serve-static')
const webClientDir = require('fasp-web-client')
app.use(serve(webClientDir))
```
Using any CLI web server (like [`serve`](https://npmjs.com/package/serve)), you can serve them like this:
```bash
serve $(node -p 'require("fasp-web-client")')
```
## Contributing
If you have a question or have difficulties using `fasp-web-client`, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, refer to [the issues page](https://github.com/derhuerst/fasp-web-client/issues).