Skip to content

sunneydev/lcu-events

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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...
  })
})

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published