Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/nomi-san/RitoClient

🤿 Deep dive into your RiotClient
https://github.com/nomi-san/RitoClient

devtools injector lcu-api league-of-legends riot-client riot-games riotclient

Last synced: 3 months ago
JSON representation

🤿 Deep dive into your RiotClient

Lists

README

        




RiotClient


RitoClient



🤿 Deep dive into your RiotClient









## 🔨 Building

### Prerequisites

- Visual Studio 2017
- Desktop development with C++
- Windows 8.1 SDK

### Build steps

1. Clone this repo
2. Open `vsproj/RitoClient.sln` in Visual Studio
3. Set configuration mode to `Release` and `Win32` (x86)
4. Press build

## 🌟 Getting started

### Usage

1. Run `bin/install.bat` (as admin) to activate the core module
2. Put your JavaScript files in `bin/preload` folder
3. Launch your RiotClient and enjoy!

### Key bindings

- Ctrl + Shift + I to open DevTools
- Ctrl + Shift + R to reload the client

## 🚀 Runtime API

### `DataStore`

Store your data locally like `localStorage`.

- `DataStore.get(key, fallback?)` - get value by key
- `DataStore.set(key, value)` - set value by key
- `DataStore.has(key)` - does the key exist?
- `DataStore.remove(key)` - remove the given key