SoundCloud APIv2 wrapper for typescript
npm i @slademan/soundcloud
import Soundcloud from "@slademan/soundcloud";
const sc = new Soundcloud(ClientID, OauthToken);
const me = await sc.me.get();
if (me.success && me.data) {
console.log(me.data);
}
See .github/CONTRIBUTING.md
, then .github/DEVELOPMENT.md
.
Thanks! 💖
💙 This package is based on @JoshuaKGoldberg's template-typescript-node-package.