
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
soundcloud-sync
Advanced tools
A library and CLI tool to sync your SoundCloud likes to local files.
# Install globally
npm install -g soundcloud-sync
# Download your likes
soundcloud-sync -u your-username
# Download with limit
soundcloud-sync -u your-username --limit 100
# Download with limit and custom folder
soundcloud-sync -u your-username --limit 100 --folder ./my-music
# Download and verify timestamps
soundcloud-sync -u your-username --limit 100 --folder ./my-music --verify-timestamps
# Only verify timestamps of existing files
soundcloud-sync -u your-username --limit 100 --folder ./my-music --verify-timestamps --no-download
Pre-built binaries are also available from the releases page for:
# Install in your project
npm install soundcloud-sync
# or
yarn add soundcloud-sync
import { soundCloudSync } from 'soundcloud-sync';
// Download latest likes
await soundCloudSync({
username: 'your-username',
limit: 100,
folder: './my-music'
});
// Only verify timestamps of existing files
await soundCloudSync({
username: 'your-username',
limit: 100,
verifyTimestamps: true,
noDownload: true
});
// Verify timestamps and download new tracks
await soundCloudSync({
username: 'your-username',
limit: 100,
verifyTimestamps: true
});
Published automatically to:
FAQs
Sync your SoundCloud likes to local files
We found that soundcloud-sync demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.