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

/iracing/

    Package Sidebar

    Install

    npm i iracing

    Weekly Downloads

    1

    Version

    0.0.4

    License

    none

    Last publish

    Collaborators

    • meltingice