Skip to content

song940/node-gps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gps2 node-gps

A GPS NMEA parser library

Installation

$ npm i node-gps --save

Example

const GPS = require('node-gps');

const gps = new GPS();

gps.on('data', (location) => {
  console.log(location);
});

fs
.createReadStream('/dev/gps-module')
.pipe(gps)

gps-module

Contributing

  • Fork this Repo first
  • Clone your Repo
  • Install dependencies by $ npm install
  • Checkout a feature branch
  • Feel free to add your features
  • Make sure your features are fully tested
  • Publish your local branch, Open a pull request
  • Enjoy hacking <3

License

This works base on Robert Eisele's GPS.js and under the MIT license.