Package Exports
- @remuring9999/valorant.js
- @remuring9999/valorant.js/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@remuring9999/valorant.js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
valorant.js
Unofficial Valorant api wrapper
Riotgames 발로란트의 전적 API 일부를 래핑하는 라이브러리입니다.
Install
$ npm install @remuring9999/valorant.jsUse
공식적인 API가 아닌 전적조회 서비스 dak.gg 플랫폼의 API를 리버싱하여 제작된 라이브러리 입니다.
사용시 발생하는 불이익과 법적 책임은 모두 사용자에게 있습니다.
Examples
const { Valorant } = require("@remuring9999/valorant.js");
Valorant.search("플레이어#KR1").then((data) => {
if (data.pageProps.__N_REDIRECT_STATUS == 307)
return console.log("존재하지 않는 플레이어");
let puuid = data.pageProps.account.puuid;
Valorant.get(puuid).then((data) => {
console.log(data);
});
});License
This repository is GNU-3.0 licensed.