https://github.com/vyorkin/purescript-soundcloud
PureScript bindings for Official SoundCloud Javascript SDK.
https://github.com/vyorkin/purescript-soundcloud
purescript soundcloud
Last synced: 9 months ago
JSON representation
PureScript bindings for Official SoundCloud Javascript SDK.
- Host: GitHub
- URL: https://github.com/vyorkin/purescript-soundcloud
- Owner: vyorkin
- Created: 2019-05-20T22:27:19.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T17:16:27.000Z (over 3 years ago)
- Last Synced: 2025-03-17T11:38:50.186Z (about 1 year ago)
- Topics: purescript, soundcloud
- Language: PureScript
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# purescript-soundcloud
[](https://circleci.com/gh/vyorkin/purescript-soundcloud/tree/master)
[](http://github.com/vyorkin)
PureScript bindings for the [Official SoundCloud Javascript SDK](https://github.com/soundcloud/soundcloud-javascript).
## Warning
It doesn't really work and I don't know how to fix the authentication issue.
Also, this: https://github.com/soundcloud/soundcloud-javascript/pull/47
# Installation
## Prerequisites
This guide assumes you already have Node.js, psc-package or Bower installed
with `npm` and `bower` somewhere on your path.
## Using [psc-package](https://github.com/purescript/psc-package):
```sh
psc-package install soundcloud
```
## Using [bower](https://bower.io/):
```sh
bower i --save purescript-soundcloud
```
# Contributing
Clone the repo, step into it and install the dependencies:
```sh
$ npm i
```
Bower dependencies will be installed automatically.
## Building
The project can now be built with:
```sh
$ npm run build
```
or just:
```sh
$ make
```
## Releasing
Update version in `bower.json` and then run:
```sh
make release v=x.x.x
```
For more info read the [pulp docs](https://github.com/purescript-contrib/pulp#releasing-packages).