Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
tessel-wifi
Advanced tools
#Tessel wifi
This is a wrapper lib around the wifi-cc3000
lib that Tessel provides.
This lib aggressively tries to connect and will power cycle the wifi chip if it still doesn't connect.
##Usage
var tesselWifi = require('tessel-wifi');
var options = {
ssid: 'network',
password: 'abc123',
// security: wpa2, // optional, defaults to wpa2
// timeout: 20, // optional timeout to connect to a network. defaults to 20
// reconnect: 3, // optional number of times to try to auto reconnect on a disconnect event. defaults to 3
}
var wifi = new tesselWifi(options);
wifi.on('connect', function(err, data){
//this event gets called whenever we connect or reconnect
console.log("Connected to", options.ssid);
})
.on('disconnect', function(err, data){
// pause the program here, wait until we reconnect
console.log("WARN: No longer connected to", options.ssid);
})
.on('error', function(err){
console.log("ERROR:", err);
wifi.reconnect();
});
##Details
Here's what this lib attempts to do:
FAQs
wrapper around the cc3000 wifi lib
We found that tessel-wifi 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.