
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.
@eove/his-node-client
Advanced tools
Node.JS client to connect to an EOVE device exposing HIS features
Node.JS client to connect to an EOVE device exposing HIS features
npm install @eove/his-node-client --save
const { createHisClient } = require('@eove/his-node-client');
const client = createHisClient(/*...*/);
client.on(ClientEventType.messageReceived, onMessageReceived);
client.connect().then(/*...*/).catch(/*...*/);
There are some examples in examples directory.
You can run these examples from sources with following requirements:
git clone https://github.com/eove/his-api.git
cd node-client
nvm install # if you use nvm
npm install
For instance, to connect and watch server events (pings mostly):
npx ts-node examples/connect
Available examples are:
connect: simple connection with ping/pong exchanges and get information resultlist: to print Android devices serial numbersreset: to reset usb stack on both sides (android and host) without unplugging cablesubscribeToAll: to subscribe to all available channelssubscribeToWaveforms: to subscribe to waveforms channelsubscribeToMonitorings: to subscribe to monitorings channelsubscribeToSettings: to subscribe to settings channelsubscribeToAlarms: to subscribe to alarms channelsubscribeToVentilation: to subscribe to ventilation channelHIS client is an event emitter and events are:
connected: we are connected to device in accessory modedisconnected: we are disconnected from devicemessageReceived: we have received a message (with a type and a payload maybe)messageSent: we have sent a message (for debugging purpose)error: on any error detectedAvailable channels are:
waveforms: to receive a batch of waveformsmonitorings: to receive monitorings updatessettings: to receive settings updates for current ventilation modealarms: to receive alarms activations/deactivationsventilation: to receive ventilation related information and updatesPackage is published on both public npm registry and Eove private one hosted by Github.
Warning: you must have a fake and empty .git directory in node-client directory.
There is a limitation in npm version script: https://github.com/npm/npm/issues/9111.
Just use npm version with something like major or specific version like 1.0.2.
A commit/tag will be created and pushed on github then artifact will be published on npm registry.
Then you should publish the exact same version on Eove private registry with:
npm_config_registry=https://npm.pkg.github.com/eove npm publish
FAQs
Node.JS client to connect to an EOVE device exposing HIS features
The npm package @eove/his-node-client receives a total of 0 weekly downloads. As such, @eove/his-node-client popularity was classified as not popular.
We found that @eove/his-node-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.