npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vallib

v0.0.27

Published

![Banner](https://github.com/mikareich/vallib/blob/main/banner.png)

Downloads

3

Readme

Banner

vallib

vallib is a TypeScript API wrapper for the unofficial Valorant API. It is designed to be consistent and easy to configure, allowing for customizations like adding a proxy.

🛡 Type Safety: Written in TypeScript, vallib provides type definitions for every endpoint. Additionally, each API response is validated against a predefined schema, ensuring consistency and reliability.

♻ Adaptable: vallib is built for flexibility. You can easily configure the client to use a proxy, skip validation steps, adjust the HTTP client settings, or simply use the default configurations.

Installation and Usage

Due to CORS limitations, vallib is intended for server-side use in modern Node.js environments. While it may work with Deno or Bun, consistent results cannot be guaranteed. To install vallib, use npm:

npm install vallib

Using vallib is straightforward: to access an endpoint, import the relevant module that includes the corresponding function. Currently, the fully implemented module is AUTH.

// Example 1
import { AUTH } from "vallib";

const cookieStrWithSSID: string[] = ...;
const response = await AUTH.COOKIE_REAUTH({ cookies: cookieStrWithSSID });

console.log(response.data.access_token);

You can also configure each endpoint and set additional options. This can be essential for preventing rate limits imposed by Riot Games via Cloudflare.

// Example 2: endpoints with proxy
import { AUTH } from "vallib";

const authToken: string = ...;

const response = await AUTH.PLAYER_INFO(
  { authToken },
  {
    proxy: process.env.PROXY_URL,
    // ...and much more...
  }
);

To enhance the developer experience and ensure the reliability of the SDK, each endpoint is fully type-safe and, by default, is always validated against a schema that defines the expected response format. Although it is not recommended, you can opt out of this validation step using the endpoint option unsafeSkipValidation: true. However, if you do so, the type definition for the current endpoint's response will revert to string.

Motivation

The Valorant API is a powerful tool for developers to create applications and services that interact with the game. However, the API is not officially supported by Riot Games, and as such, it is subject to change without notice. vallib aims to provide a consistent and easy-to-use interface for developers to interact with the API, while also providing type safety and validation to ensure that the data returned is accurate and reliable.

Similar projects are the vallib python library and riot auth library

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT