npm install soundcloud-scraper

About

soundcloud-scraper is a powerful node.js module that allows you to fetch data from SoundCloud very easily.

Example

const SoundCloud = require("soundcloud-scraper");
const client = new SoundCloud.Client();
const fs = require("fs");
const song_url = "https://soundcloud.com/dogesounds/alan-walker-feat-k-391-ignite";

client.getSongInfo(song_url)
    .then(async song => {
        const stream = await song.downloadProgressive();
        const writer = stream.pipe(fs.createWriteStream(`./${song.title}.mp3`));
        writer.on("finish", () => {
          console.log("Finished writing song!")
          process.exit(1);
        });
    })
    .catch(console.error);

Why?

  • Object-oriented
  • Speedy and efficient
  • Feature-rich
  • Flexible
  • 100% Promise-based

Statistics

  • 164,276 downloads
  • 68 stars
  • 3+ contributors

...and growing!