
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Beatport API client - resources as methods, also attempts to improve the resulting data to make them more useful.
npm install beatport
var Beatport = require('beatport')
// initialize and configure client
var bp = Beatport({ perPage: 10, sortBy: 'releaseDate desc' })
// resources (i.e: featured/releases) as methods (camelCased, i.e: featuredReleases)
//
// a search for tracks by 'digweed'
bp.search({ query: 'digweed', facets: { fieldType: [ 'track' ] } }, function(err, results, metadata) {
results.forEach(function(track) {
console.log(track.title)
})
})
// get tracks of genre Tech House and performers John Digweed and Nick Muir
bp.tracks({
facets: {
genreName: 'Tech House'
, performerName: [ 'John Digweed', 'Nick Muir' ]
}
, page: 1
}, function(err, results, metadata) {
results.forEach(function(track) {
console.log(track.title)
})
})
// get details of label with id 804
bp.labelsDetail({ id: 804 }, function(err, results, metadata) {
results.mostPopularReleases.forEach(function(release) {
console.log(release.name, release.artists.names)
})
})
In order to make the resulting Beatport data more Javascript-friendly, by default
the client attempts to improve the data. If you don't want this behavior, just initialize
the client with an improve: false
option.
This is what it does, so far:
FAQs
Beatport API client for Node.js
The npm package beatport receives a total of 0 weekly downloads. As such, beatport popularity was classified as not popular.
We found that beatport demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.