Socket
Socket
Sign inDemoInstall

@solely/simple-fm

Package Overview
Dependencies
4
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @solely/simple-fm

A simple, asynchronous Last.fm wrapper in TypeScript.


Version published
Weekly downloads
64
increased by178.26%
Maintainers
1
Install size
975 kB
Created
Weekly downloads
 

Changelog

Source

1.7.2

Patch Changes

  • 38d2200: Remove position from AlbumType
  • 891cd60: Add back the name property to albums in user.getRecentTracks

Readme

Source
Headphones with musical notes coming out of it.

simple-fm

A simple, asynchronous Last.fm wrapper in TypeScript.

Search for what someone has been listening to lately, what tracks are trending in a country, an artist's top tracks, and a lot more.

For more information, please visit the documentation website.

CI npm-image downloads-image license-image

Install

simple-fm requires that you have Node.js 18 (and above) and TypeScript v5+ installed.

  • npm: npm i @solely/simple-fm
  • pnpm: pnpm i @solely/simple-fm
  • yarn: yarn add @solely/simple-fm
  • bun: bun i @solely/simple-fm

Notice

simple-fm requires you to have a Last.fm API key.

To obtain a Last.fm API key, click here to register an API account.

Example usage

// Import the simple-fm package.
import SimpleFM from '@solely/simple-fm'; // ESM
import SimpleFM from 'https://esm.sh/@solely/simple-fm'; // Deno
const SimpleFM = require('@solely/simple-fm'); // CommonJS
// Replace the token with your Last.fm API key.
const client = new SimpleFM('Last.fm API key');

// Fetch the recent track from a user.
const json = await client.user.getRecentTracks({ username: 'solelychloe' });

console.log(json);

License

This package is licensed under the zlib license.

© 2024 Chloe Arciniega.

Keywords

FAQs

Last updated on 02 Mar 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc