
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
bancroft is a node client for the gps daemon providing configurable async location tracking featuring geojson geometries point format.
Upon object creation ( new Bancroft()
), bancroft connects to a running GPS daemon and send ?WATCH
and ?POLL
messages to receive messages (json type) back from the daemon, hence, from the GPS device itself. Upon connection, a connection
event is emitted along with daemon version and release details object. A disconnect
event is emitted once the daemon is found off grid.
At any time, bancroft keeps track of the current location along with information about current satellite status. A location
event is emitted once a new location has been tracked, that is, whenever the latitude, longitude or altitude received from the device differs from the currently stored information. A satellite
event is emitted whenever a given satellite (PRN) changes status.
{
timestamp: 1311296682000,
latitude: 45.456445,
longitude: -73.569651667,
altitude: 28.9,
speed: 11,
track: 10.3788,
geometries: {
type: 'Point',
coordinates: [ -73.569651667, 45.456445, 28.9 ]
}
}
var Bancroft = require('bancroft');
var bancroft = new Bancroft();
bancroft.on('connect', function () {
console.log('connected');
});
bancroft.on('location', function (location) {
console.log('got new location');
});
bancroft.on('satellite', function (satellite) {
console.log('got new satellite state');
});
bancroft.on('disconnect', function (err) {
console.log('disconnected');
});
Point
format.This module assumes you have a working gps daemon accessible somewhere reacheable on the network along with a GPS tracking device up and running. This module has been tested with an old dusty Garmin eTrex Legend with a Serial->USB adapter cable using the NMEA data protocol. More devices have been reported to work with this modules.
Support for gpsd is available from my own contribution to homebrew. However, as of this writing, pull request has yet to be merged into master.
Support for Serial-USB adapter also requires some special sauce. Basically,
wget -o osx-pl2303.kext.zip "http://sourceforge.net/tracker/download.php?group_id=157692&atid=804837&file_id=363913&aid=2952982"
unzip osx-pl2303.kext.zip
sudo cp -r ~/osx-pl2303.kext /System/Library/Extensions/
sudo kextload /System/Library/Extensions/osx-pl2303.kext
sudo ln -s /dev/tty.PL2303-* /dev/ttyUSB0
$ sudo gpsd -D 2 -n -b -N -P /tmp/gpsd.pid /dev/ttyUSB0
$ gpspipe -w
$ git clone git://github.com/pdeschen/bancroft.git
$ sudo npm install bancroft [-g]
(The MIT License)
Copyright 2011-2012 Pascal Deschenes (pdeschen @ gmail . com) . All rights reserved.
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.
0.0.13
mode
, ep
* as part of location event. (@iyogeshjoshi)FAQs
gpsd client for GPS tracking device.
We found that bancroft demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.