Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

adsb-message-integrator

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adsb-message-integrator

Integrates ADSB messages into a continually updating model of the current state of all recently detected ADSB transponders

  • 0.2.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

adsb-message-integrator

A Microservice that processes ADSB messages in order to track and predict the current state of all transponders.

Example usage

The module uses Seneca as it's microservices framework and is bundled with Koa bindings so that you can get up and running with it quickly. Here is an minimal example of using Koa to create a server that processes ADSB messages POSTed via /message, and serves up state via GET requests to /state:

var app    = require('koa')();
app.use(require('koa-bodyparser')());

var seneca = require('seneca')();
seneca.use('seneca-bluebird');

var integrator = require('adsb-message-integrator')({}, seneca);
app.use(integrator.koa());

app.listen(8888);

There is an example application bundled in as example.js which can be run to see a working example:

node --harmony_arrow_functions example.js

Todo

  • MLAT

Keywords

FAQs

Package last updated on 20 Dec 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc