
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.
@ipmanlk/spotify-grab
Advanced tools
spotify-grab ====================== Extract useful metadata from various Spotify URIs.
Extract useful metadata from various Spotify URIs.
npm i @ipmanlk/spotify-grab
Promise.<(Spotify.Info|undefined)>
Kind: global function
Returns: Promise.<(Spotify.Info|undefined)>
- - Data extracted from the URI.
Throws:
SPOTIFY_URI_PARSE_ERROR
- Unable to parse the given URI.SPOTIFY_UNSUPPORTED_URI_TYPE
- Given URI is not supported.SPOTIFY_REQUEST_FAILED
- Failed to send a request to Spotify.Param | Type | Description |
---|---|---|
URI | string | Spotify URI in any format. Only URIs for tracks, artists, albums and playlists are supported. |
Example
const { getInfo } = require("@ipmanlk/spotify-grab")
const URI = "https://open.spotify.com/track/6habFhsOp2NvshLv26DqMb?si=FkyYtDchRW-L8L2BlCweRw"
getInfo(URI).then(data => {
console.log(data);
}).catch(error => {
console.log(error);
});
//* Output of the above code will take following shape,
{
"type": "track", //* Type of the input URI
"track": { //* Object with the name of above type (dynamic)
"id": "6habFhsOp2NvshLv26DqMb",
"name": "Despacito",
"preview_url": "https://p.scdn.co/mp3-preview/ce2ad348fa47",
"album": {
"name": "VIDA"
},
"explicit": false,
"artists": [
{
"id": "4V8Sr092TqfHkfAA5fXXqG",
"name": "Luis Fonsi",
"uri": "spotify:artist:4V8Sr092TqfHkfAA5fXXqG"
}
]
}
}
FAQs
spotify-grab ====================== Extract useful metadata from various Spotify URIs.
The npm package @ipmanlk/spotify-grab receives a total of 0 weekly downloads. As such, @ipmanlk/spotify-grab popularity was classified as not popular.
We found that @ipmanlk/spotify-grab 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.
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.