location.io

0.0.4 • Public • Published

Location.IO Logo

build status Location.IO

Location.IO facilitates the creation of tracking solutions by providing a common interface to GPS tracking hardware.

Location.IO supports multiple GPS tracker protocols on a single TCP/IP port relieving users of the need to know which protocol their tracking device uses.

Location.IO is written in JavaScript for Node.js. Node.js was chosen because its non-blocking, event-driven IO model is well suited to a server that will have a large number of symultaneous connections, each sending a small amout of data.

Currently supported protocols

Demo Application

Demo appliation using SocketStream, angular.js and Google Maps

Basic Example

Listens on port 1337 for incoming connections from trackers and logs messages from trackers to console:

 
var LocationIo = require('location.io');
 
var locationIo = new LocationIo();
 
locationIo.on('tracker-connected', function(trackerId, protocolName) {
  console.log('new connection ' + trackerId + ' using protocol ' + protocolName);
});
 
locationIo.on('tracker-disconnected', function(id) {
    console.log('connection closed ' + id);
});
 
locationIo.on('message', function(trackerId, message) {
    console.log('message from ' + trackerId);
    console.log(message);
});
 
 
locationIo.createServer(1337);

More info

More info about supported trackers and protocols can be found on the Location.IO webstie

Terminology

Up messages

Up messages are sent from the tracking device to the server.

Down messages

Down messages are sent from the server to the tracking device.

Up messsage ACKs

Some protocols require up messages to be acknowledged by the server. The 'Up message ACK' is a special case of a 'down message'.

Down message ACKs

Some protocols require down messages to be acknowledged by the tracker. The 'Down message ACK' is a special case of an 'up message'.

License

The MIT License (MIT)

Copyright (c) 2013 Alex Birkett alex@birkett.co.uk

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i location.io

Homepage

location.io

Weekly Downloads

9

Version

0.0.4

License

MIT

Last publish

Collaborators

  • alexbirkett