GraphQL API for radio-browser
Check the playground
{
stations(query: "Electro") {
url
name
tags
}
}
- ▲ now
- docker
- polka
- express-graphql
- radio-browser
npm i -g radio-gql
radio-gql --port 3000
docker run -p 3000:3000 ricardocasares/radio-gql
Clone the repository and inside the root folder run:
docker build . -t radio-gql
docker run -p 3000:3000 radio-gql
You can now visit the playground at http://localhost:3000
Feel free to open an issue, pull requests are preferred.
IMPORTANT Make sure you always create new branches from beta
.
We use semantic-release
to automate the versioning process, make sure you follow the commit message convention explained here.
HEADS UP: If you are not sure how write a commit message, make your changes in your feature branch and run npm run commit
and follow the assistant.
Create a feature branch and make a pull-request to beta
branch.
Once its merged, you can try and install the package using @beta
dist tag on npm
.
npm i -g radio-gql@beta
Create a new pull-request from beta
to master
branch.
Once it gets merged, the final version will be released using @latest
dist tag on npm
.