@ianlucas/cs2-lib
TypeScript icon, indicating that this package has built-in type declarations

6.1.2 • Public • Published

cs2-lib

A TypeScript library for manipulating Counter-Strike 2 data

This library contains items and data from Counter-Strike 2, including utility functions and classes for interacting with them using TypeScript.

Install

npm install @ianlucas/cs2-lib

Usage

import { CS2Economy, CS2_ITEMS } from "@ianlucas/cs2-lib";
import { english } from "@ianlucas/cs2-lib/translations";

CS2Economy.use({
    items: CS2_ITEMS,
    language: english
});

const item = CS2Economy.getById(307);

item.name;
//=> "AWP | Dragon Lore"

Download asset images

By default the library uses my CDN at cdn.cstrike.app for image URLs. If you need to self-host your content, you can find and download the latest images at update's workflow runs. Open the latest successful run and it'll have the assets attached as an artifact.

CS2Economy.use({
    assetsBaseUrl: "https://your-website.com/assets",
    items: CS2_ITEMS,
    language: english
});

Readme

Keywords

none

Package Sidebar

Install

npm i @ianlucas/cs2-lib

Weekly Downloads

207

Version

6.1.2

License

MIT

Unpacked Size

123 MB

Total Files

93

Last publish

Collaborators

  • ianlucas