1.0.2 • Published 1 year ago

@hanni_tokki/blip.js v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

KPOP RADAR API WRAPPER

npm npm (scoped) npm bundle size (scoped)

This is an unofficial API wrapper for kpop-radar.com.

Installation

npm

npm install @hanni_tokki/blip.js

yarn

yarn add @hanni_tokki/blip.js

How to use

ES6

import { Blip } from "@hanni_tokki/blip.js";

const blip = new Blip();

const res = await blip.getArtistInfo({
  artistId: "2463",
  groupPath: "NewJeans",
});

console.log(JSON.stringify(res, null, 2));

CommonJS

const { Blip } = require("@hanni_tokki/blip.js");

const blip = new Blip();

(async () => {
  const res = await blip.getArtistInfo({
    artistId: "2463",
    groupPath: "NewJeans",
  });

  console.log(JSON.stringify(res, null, 2));
})();
1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago