npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

xplane-udp

v2.0.0

Published

XPlane UDP Client for Node.js

Downloads

22

Readme

XPlane UDP Build Status

XPlane UDP Client for Node.js

Requirements

  • NodeJS (v6.X.X)
  • Xplane 11

Usage

// Import XPlane class from the package
import { XPlaneClient } from "xplane-udp"


// Create a client on a specific port (this is a value you define in your xplane game settings)
const client = new XPlaneClient(49000)

// Start the UDP listener
client.start()

// Subscribe to the updated event
// This will fire at the rate at which you send UDP updates (set in-game)
client.on("updated", (data) => {
    
    // Do something with the data
    console.log(data)

})

// You can also access the data directly from the client instance
callMeMaybe(() => {
    
    // Access data in the following format `<client>.data.<group>.<value>`
    console.log(client.data.time.real)
    console.log(client.data.airspeed.indicated)

})

Output Data Format (XPlaneUpdate interface)

Below is the structure of the data object returned in the updated event, or otherwise accesible directly from client.data.<group>.<value>.

  • time
    • real - [s]
    • total - [s]
    • mission - [s]
    • timer - [s]
    • zulu - [hh.ss]
    • local - [hh.ss]
    • hobbs
  • airspeed
    • indicated - KIAS [kts]
    • equivalent - KEAS [kts]
    • true - KTAS [kts]
    • truegnd - KTGS [kts]
    • mph - IAS [mph]
    • mphair - [mph]
    • mphgnd - [mph]
  • gload
    • mach - Mach number [ratio]
    • vvi - VVI [fpm]
    • normal
    • axial
    • side
  • angularmoment
    • m - [ftlb]
    • l - [ftlb]
    • n - [ftlb]
  • angularvelocity
    • q - [rad/s]
    • p - [rad/s]
    • r - [rad/s]
  • attitude
    • pitch - [deg]
    • roll - [deg]
    • truehdg - [deg]
    • maghdg - [deg]
  • aoa
    • alpha - [deg]
    • beta - [deg]
    • hpath - [deg]
    • vpath - [deg]
    • slip - [deg]
  • compass
    • mag - [comp]
    • mavar - [deg]
  • globalposition
    • lat - [deg]
    • lon - [deg]
    • altmsl - [ft]
    • altagl - [ft]
    • runway - [runway no.]
    • altind - [ft]
    • latnorm
    • lonnorm
  • simposition
    • x - [m]
    • y - [m]
    • z - [m]
    • vx - [m/s]
    • vy - [m/s]
    • vz - [m/s]
    • distft - [ft]
    • distnm - [nm]
  • throttlecommand
    • [1..8]
  • throttleactual
    • [1..8]
  • enginepower
    • [1..8] - [hp]
  • enginethrust
    • [1..8]
  • enginetorque
    • [1..8]
  • enginerpm
    • [1..8]
  • proprpm
    • [1..8]
  • proppitch
    • [1..8]
  • enginewash - propwash or jetwash
    • [1..8] - [kts]
  • n1 - turbine N1 %
    • [1..8] - [%]
  • n2 - turbine N2 %
    • [1..8] - [%]
  • fuelflow
    • [1..8] - [lb/h]
  • itt
    • [1..8] - [deg]
  • egt
    • [1..8] - [deg]
  • cht
    • [1..8] - [deg]
  • oilpressure
    • [1..8] - [psi]
  • oiltemp
    • [1..8] - [deg]
  • fuelpressure
    • [1..8] - [psi]
  • aeroforce
    • lift - [lb]
    • drag - [lb]
    • side - [lb]
  • engineforce
    • normal - [lb]
    • axial - [lb]
    • side - [lb]

Contibute to the code

  1. Clone the Repo onto your local machine
  2. Install the dependancies: npm i
  3. Build the code (ts->js): npm run typescript (or typescript-watch to watch)
  4. Contribute!

Running the tests

  1. Clone the Repo onto your local machine
  2. Install the dependancies: npm i
  3. Build the code (ts->js): npm run typescript
  4. Run the tests: npm run test