Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/meltingice/node-iracing

iRacing SDK bindings for NodeJS
https://github.com/meltingice/node-iracing

Last synced: 24 days ago
JSON representation

iRacing SDK bindings for NodeJS

Awesome Lists containing this project

README

        

# iRacing Bindings for Node

A native C++ library that binds the iRacing SDK to NodeJS so that you can access it from Javascript.

## Example Usage

``` javascript
var iRacing = require('iracing').iRacing;

console.log("Waiting for connection...");

// Wait for the game connection
iRacing.ready(function () {
console.log("Connected!");
console.log(this.sessions.weekend.TrackDisplayName);

// Execute code on every simulation tick
this.onTick(function () {
console.log(this.getTelemetry('Throttle'));
});
});
```