lcu-events
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

lcu-events

A lightweight cross-platform TS project for receiving events from LCU.

Installation

npm install lcu-events

Usage

Subscribe to a specific event

import LCU from 'lcu-events';

const lcu = new LCU();

lcu.events.on('/lol-champ-select/v1/session', (data) => {
    // handle
})

Make a request to an endpoint

import LCU from "./lcu";

const lcu = new LCU();

lcu.wsEvents.on('connect', () => {
  lcu.fetch('/lol-login/v1/session')
  .then((resp) => resp.json())
  .then((data) => {
    // process data...
  })
})

Readme

Keywords

Package Sidebar

Install

npm i lcu-events

Weekly Downloads

1

Version

0.1.2

License

ISC

Unpacked Size

18.9 kB

Total Files

8

Last publish

Collaborators

  • sunney