@mateie/valclient.js
TypeScript icon, indicating that this package has built-in type declarations

2.4.0 • Public • Published

valclient.js

Statements Branches Functions Lines

Valorant Client API Wrapper in NodeJS

Installation

yarn add valclient.js

Usage

const { ValClient } = require("valclient.js");

//or

import { ValClient } from "valclient.js";

const client = new ValClient()

client.init({ region: "br" }) // we try to iniciate client locally when not pass auth
// need to have connected in valorant launcher
    .then(async () => {
        const player = await client.player.current()
    })

// or with async/await

(async () => {
    await client.init({ region: "br" });
    const player = await client.player.current()
})()

// passing auth

client.init({ auth: { username: "teste", password: "teste" }, region: "br" })
    .then(async () => {
        const player = await client.group.current()
    })

Docs

Access the documentation via the link docs.

Legal

Riot Games, VALORANT, and any associated logos are trademarks, service marks, and/or registered trademarks of Riot Games, Inc.

This project is in no way affiliated with, authorized, maintained, sponsored or endorsed by Riot Games, Inc or any of its affiliates or subsidiaries.

I, the project owner and creator, am not responsible for any legalities that may arise in the use of this project. Use at your own risk.

Package Sidebar

Install

npm i @mateie/valclient.js

Weekly Downloads

0

Version

2.4.0

License

MIT

Unpacked Size

1.44 MB

Total Files

435

Last publish

Collaborators

  • mateie