iracing

0.0.4 • Public • Published

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

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'));
  });
});

Readme

Keywords

none

Package Sidebar

Install

npm i iracing

Weekly Downloads

2

Version

0.0.4

License

none

Last publish

Collaborators

  • meltingice