
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
soundcloud-node-es6
Advanced tools
A node.js wrapper for the Soundcloud SDK. Inspired by the library node-soundcloud.
This module is still in development. Only the client id is used, the secret id is ignored (so, you can get only public information).
I have to implement the Redirect URI and the OAuth Token.
npm install soundcloud-node-es6
const SC = require('soundcloud-node-es6');
// Initialize the client
SC.init({
id: 'YOUR_CLIENT_ID',
secret: 'YOUR_SECRET_ID'
});
// To get informations about a track
SC.get('/tracks/245743948').then((result) => {
console.log(result);
}).catch((error) => {
console.log(error);
});
// To search a track
SC.get('/tracks', {
q: 'Desiigner - Panda',
}).then((result) => {
for (const track of result) {
console.log(track);
}
}).catch((error) => {
console.log(error);
});
// You can also use other method
SC.post(...);
SC.put(...);
SC.delete(...);
# To launch the test
npm test
# To see the code coverage
npm run cover
You have to create a file named config.json in the test folder.
{
"id": "YOUR_CLIENT_ID",
"secret": "YOUR_SECRET_ID"
}
Don't hesitate to create a pull request to improve the project.
If you find a bug or want a new feature, dont'hesitate to create an issue.
FAQs
A node.js wrapper for the Soundcloud SDK.
We found that soundcloud-node-es6 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.