New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

fsuipc

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fsuipc

Node bindings for FSUIPC

latest
npmnpm
Version
0.7.3
Version published
Weekly downloads
11
-8.33%
Maintainers
0
Weekly downloads
 
Created
Source

fsuipc

Node bindings to FSUIPC for Windows x64.

NPM Version Downloads Stats

Installation

npm install --save fsuipc

Or

yarn add fsuipc

Usage example

const fsuipc = require('fsuipc');

const obj = new fsuipc.FSUIPC();

obj.open()
    .then((obj) => {
      console.log(obj.add('clockHour', 0x238, fsuipc.Type.Byte));
      console.log(obj.add('aircraftType', 0x3D00, fsuipc.Type.String, 256));
      console.log(obj.add('lights', 0x0D0C, fsuipc.Type.BitArray, 2));

      return obj.process();
    })
    .then((result) => {
      console.log(JSON.stringify(result));

      return obj.close();
    })
    .catch((err) => {
      console.error(err);
      
      return obj.close();
    });

Release History

This is only provided for historical reasons, for the newest releases see GitHub releases.

  • 0.4.1:
    • Limit number of published files
  • 0.4.0:
    • Add support for requesting a connection to MSFS
    • Add support for writes
  • 0.3.0
    • Add support for Node 12.0, drop support for Node < 11.0
  • 0.2.0
    • Stability improvements
  • 0.1.0
    • Initial release

Keywords

fsuipc

FAQs

Package last updated on 27 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts