A simple and lightweight SoundCloud scrapper in node.js
- First clone the GitHub repository
git clone https://github.com/Ruzie/soundcloud-info.git
- Move to that cloned folder and execute
yarn && tsc
const { Search } = require("./index.js");
(async () => {
const test = new Search();
const data = await test.get("nwantiti");
console.log(data);
})();
If you encounter with any kind of issue, please feel free to create an issue. Pull requests are welcome!