
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Nodejs Client library for IOStash IoT PaaS. Supports realtime data subscription to Devices, Data Points, Location, Channels and Custom Data sent to devices.
Installing
Use NPM
npm install iostash
How To Use
This library supports all realtime events supported by IOStash. Refer to API Docs on http://docs.iostash.io for more information and guides on using this library.
//Require library
var io = require('iostash')
//Initialize
var iostash = new io(options);
//Attach listeners
iostash.subscribeDevice('DEVICE-ID_HERE', function (err,data) {
//Handle data here
});
Supported option parameters
Example
This example utilises a public device defined in IOStash.
var io = require('iostash');
var options = {
accessToken: 'token goes here',
debugLogs: true
};
var iostash = new io(options);
iostash.subscribeDevice('5734997f8680bc62de000006', function(err, update) {
console.log(update);
});
Methods
constructor(options) - Initialises the object with specified options.subscribeDevice(deviceId,cb(err,data)) - Subscribes to data changes from the specified device.unsubscribeDevice(deviceId,cb(err,data)) - Unsubscribes from the specified device.subscribeDataPoint(deviceId,datapoint,cb(err,data)) - Subscribes to specified datapoint of the specified device.unsubscribeDataPoint(deviceId,datapoint,cb(err,data)) - Unsubscribes from the specified data point.subscribeLocation(deviceId,cb(err,data)) - Subscribes to location data from the specified device.subscribeActions(deviceId,cb(err,data)) - Subscribes to device trigger action of the specified device.subscribeCustomData(deviceId,cb(err,data)) - Subscribes to custom data sent to the device.getConnectionStatus(cb(status)) - Gets the connection statusconnectionDropped(cb(err)) - Callback will be executed when the connection is dropped.connectionFatal(cb(err)) - Callback will be executed when an irrecoverable error occurs.Notes
cb() refers to callbacks and they will be executed during updates.For support or assistance, drop an email to support@iostash.io
FAQs
Platform library for IOStash IoT PaaS
The npm package iostash receives a total of 5 weekly downloads. As such, iostash popularity was classified as not popular.
We found that iostash 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.