Nhaccuatui com top100 top 100 nhac tre m3liaiy6vvsf html

All security vulnerabilities belong to production dependencies of direct and indirect packages.

Security and license risk for significant versions

All Versions

Version Vulnerabilities License Risk 1.0.0 | 09/2021

Popular

  • 0 C
  • 0 H
  • 0 M
  • 0 L
  • 0 H
  • 0 M
  • 0 L

Security Policy

No

Is your project affected by vulnerabilities?

Scan your projects for vulnerabilities. Fix quickly with automated fixes. Get started with Snyk for free.

Get started free

Weekly Downloads (0)

GitHub Stars

?

Forks

?

Contributors

-


Direct Usage Popularity


The npm package nhaccuatui-api receives a total of 0 downloads a week. As such, we scored nhaccuatui-api popularity level to be Limited.

Based on project statistics from the GitHub repository for the npm package nhaccuatui-api, we found that it has been starred ? times.

Downloads are calculated as moving averages for a period of the last 12 months, excluding weekends and known missing data points.

Commit Frequency

Open Issues

?

Open PR

?

Last Release

2 years ago

Last Commit

unknown


Further analysis of the maintenance status of nhaccuatui-api based on released npm versions cadence, the repository activity, and other data points determined that its maintenance is Inactive.

An important project maintenance signal to consider for nhaccuatui-api is that it hasn't seen any new versions released to npm in the past 12 months, and could be considered as a discontinued project, or that which receives low attention from its maintainers.

In the past month we didn't find any pull request activity or change in issues status has been detected for the GitHub repository.

Node.js Compatibility

not defined


Age

2 years

Dependencies

3 Direct

Versions

2

Install Size

3.75 kB

Dist-tags

1

# of Files

4

Maintainers

1

TS Typings

No


nhaccuatui-api has more than a single and default latest tag published for the npm package. This means, there may be other tags available for this package, such as next to indicate future releases, or stable to indicate stable releases.

TOP 100 Trữ Tình là danh sách 100 bài hát hot nhất thuộc thể loại Trữ Tình được nghe nhiều nhất trên NhacCuaTui. Danh sách bài hát này được hệ thống tự động đề xuất dựa trên lượt nghe, lượt share, lượt comment v.v của từng bài hát trên tất cả các nền tảng (Web, Mobile web, App). Top 100 Trữ Tình sẽ được cập nhật hằng ngày dựa trên các chỉ số của tuần đó.

rút gọn

xem thêm

NhacCuaTui API Library with Typescript support Support Nodejs server, client request (with proxy built in)

Original Library

👉 nhaccuatui-api 👈 Respect a lot ❤️ 🙏

Installation

npm i nhaccuatui-api-full

Common JS

const NhacCuaTui = require("nhaccuatui-api-full"); // or const { getHome, getSong, getPlaylists, //... and many other services } = require("nhaccuatui-api-full");

ES Import

import NhacCuaTui from "nhaccuatui-api-full"; // or import { getHome, getSong, getPlaylists, //... and many other services } from "nhaccuatui-api-full";

To use this library with Vite remember to add this plugin @originjs/vite-plugin-commonjs

Usage

Get Data

// .then getHome().then((data) => console.log(data)); // or NhacCuaTui.getHome().then((data) => console.log(data)); // async - await (async () => { const data = await getHome(); // or const data = await NhacCuaTui.getHome(); })();

1. Get Home

Get the data display on the homepage (Include song, artist, playlists, trending, ...)

2. Get Song

Get the song detail Example Link: https://beta.nhaccuatui.com/bai-hat/buoc-qua-nhau-vu.EdENCgJm9dAa.html Then the ID is: EdENCgJm9dAa

3. Get Playlists

Get the list of popular playlists

4. Get Playlist Detail

Get the playlist detail Example Link: https://beta.nhaccuatui.com/playlist/nhac-viet-hot-thang-12-va.7ROXQyroRFYT.html Then the ID is: 7ROXQyroRFYT

getPlaylistDetail("PLAYLIST_ID");

5. Get Lyric

Get the lyric in text and LRC file

6. Get Video / MV Detail

Get Music Video detail Example Link: https://beta.nhaccuatui.com/video/co-hen-voi-thanh-xuan-monstar.IXTbg1bBelQKh.html Then the ID is: IXTbg1bBelQKh

getVideoDetail("VIDEO_ID");

7. Get Topics

Get popular topics

8. Get Topic Detail

Get the topic detail Example Link: https://beta.nhaccuatui.com/chu-de/hot-v-pop.weiwjycnu.html Then the ID is: weiwjycnu

getTopicDetail("TOPIC_ID");

9. Get Chart

Get Top Songs

Parameters

  • Category (Optional). Default: "nhac-viet"
  • Time (Optional)
    • Week: number
    • Year: number

// Use default option getChart(); // or custom property getChart({ category: "nhac-viet", time: {

week: 48,
year: 2021,
}, });

10. Get Top 100

Get the top 100 song of the playlist

Example Link: https://beta.nhaccuatui.com/top100/top-100-nhac-tre.m3liaiy6vVsF.html So the ID is: m3liaiy6vVsF

11. Search by Keyword

Search songs, playlists, artists,... by keyword

searchByKeyword("SEARCH_KEYWORD");

12. Get Top Keywords

Get top searched keywords

Get top 10 artists

14. Explore artists

Parameters

  • nation (Optional) - Default: "hot"
  • gender (Optional) - Default: 1 (men)

// Default options exploreArtists(); // Or With options exploreArtists({ nation: "hot", gender: 1, });

15. Get artist Detail

Get one artist detail Example Link: https://beta.nhaccuatui.com/nghe-si-erik.html Then the ID is: erik

const NhacCuaTui = require("nhaccuatui-api-full"); // or const { getHome, getSong, getPlaylists, //... and many other services } = require("nhaccuatui-api-full");

0

16. Explore (Song, Playlist, MV)

Parameters

  • type (Required) - "song" || "playlist" || "mv"
  • key (Optional) - Default: "moi-hot"
  • page (Optional) - Default: 1
  • pageSize (Optional) - Default: 36

const NhacCuaTui = require("nhaccuatui-api-full"); // or const { getHome, getSong, getPlaylists, //... and many other services } = require("nhaccuatui-api-full");

1

Summary

🤩✨ If you enjoy using this library, give me a star on Github and share it to your friends. ✨🤩

✅ If you have an error caused by the api, maybe NhacCuaTui has updated. Try to update to the latest version, if not working, submit an Issue on the repository ✅