melona
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

Melona🍈

License stars - melonchart forks - melonchart

og_image

멜론 음원 서비스의 여러 데이터를 JSON으로 변환하는 크롤러

Features

Screenshot

  • 멜론 웹 사이트의 다양한 종류의 데이터를 JSON으로 변환
    • 멜론차트 TOP100
    • 멜론 최신 음악
    • 멜론 음악 검색

How to use

  • 모듈 설치
npm install melona
  • 멜론 음악 검색
import { MelonSearch } from 'melona';

const melonSearch = new MelonSearch();
const data = await melonSearch.searchSong({
  query: '윤하', // 실제 검색어로 치환하세요.
  section: 'artist', // 사용 가능한 옵션: all, artist, song, album
});

console.log(data);
  • 멜론차트 TOP100
import { MelonChart } from 'melona';

const melonChart = new MelonChart();
const chart = await melonChart.getChart();

console.log(chart);
  • 멜론 최신음악
import { MelonNewMusic } from 'melona';

const melonNewMusic = new MelonNewMusic();
const table = await melonNewMusic.getTable();

console.log(table);

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i melona

Version

1.0.4

License

MIT

Unpacked Size

27.5 kB

Total Files

19

Last publish

Collaborators

  • vientorepublic