KD0NKS / js-aprs-is

JavaScript implementation of the Perl-APRS-Fap/Ham::APRS::FAP IS class
MIT License
7 stars 0 forks source link

js-aprs-is npm Build Status Coverage Status Codacy Badge Known Vulnerabilities

APRS is a registered trademark Bob Bruninga, WB4APR.

This project will attempt to provide a node version of the perl-aprs-fap/HAM::APRS::FAP IS class/module. Over time, it is likely this will diverge from the original code due to platforms, but will attempt to keep usage straightforward and similar where applicable. The biggest difference will be the usage of a push rather than pull paradigm, which will also negate the need for some methods/functions.

USAGE

Demo

https://github.com/KD0NKS/aprs-is-demo

npm

npm install js-aprs-is --save

Extends NodeJS Socket, which means this is not guranteed to deliver one APRS packet per tcp packet. Buffering must be implemented when using.

TypeScript

Using this the easy way

let connection = new ISSocket("aprsserverurl", PORTNUMBER, "N0CALL", -1, FILTER);

connection.on('packet', (data: string) => {
    // ...
});

BYOB (Bring your own buffer)

let bufferedData = '';
let connection = new ISSocket("aprsserverurl", PORTNUMBER, "N0CALL", -1, FILTER);

// Probably not the best way, but good enough for now.  Still consumes world feed on low end computer.
connection.on('data', (data: Buffer) => {
    bufferedData += data.toString();
    let msgs = bufferedData.split('\r\n');

    if(this._bufferedData.endsWith('\r\n')) {
        this._bufferedData = '';
        msgs = msgs.filter(msg => msg.trim() != '');    // This is trimming out any empty messages
    } else {
        this._bufferedData = msgs.pop();
    }

    //...
}

KNOWN ISSUES

TO CONSIDER

SEE ALSO

ORIGINAL COPYRIGHT

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

UPGRADING 1.x.x to 2.x.x

ISSocket Constructor

The constructor paramaters have changed drastically. Please note the order has changed as well as what is required.