Skip to main content
The Deno 2 Release Candidate is here
Learn more

SoundSphere

GitHub release (latest by date) Version Node Version

âš  The library is W.I.P. and most methods are not yet implemented

A modern SoundCloud API client for Node.js and Deno.

Features

  • ✨ Typed methods (generated via quicktype)
  • âš¡ Targets ES2019 (Node 12+ LTS)

Example

import { SoundCloud } from 'soundsphere'

const sc = new SoundCloud({
  id: 'CLIENT_ID',
  secret: 'CLIENT_SECRET'
})
const { id } = await sc.user('uvulauvula')

const json = (await sc.tracks({ user: id }))[1]

console.log(json)