Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
enn-egg-mqtt
Advanced tools
mqtt client based on mqtt for egg framework
$ npm i enn-egg-mqtt --save
Change ${app_root}/config/plugin.js
to enable mqtt plugin:
exports.emqtt = {
enable: true,
package: 'enn-egg-mqtt',
};
Configure mqtt information in ${app_root}/config/config.default.js
:
Single Client
config.emqtt = {
client: {
host: 'mqtt://xxx.xxx.xxx.xxx',
password: 'xxxxx',
username: 'xxxxx',
clientId: 'xxxxx',
options: {
keepalive: 60,
protocolId: 'MQTT',
protocolVersion: 4,
clean: true,
reconnectPeriod: 1000,
connectTimeout: 30 * 1000,
rejectUnauthorized: false,
...
},
msgMiddleware: [ 'xxxx' ],
},
}
Multi Clients
config.emqtt = {
clients: {
foo: {
host: 'mqtt://xxx.xxx.xxx.xxx',
password: 'xxxxx',
username: 'xxxxx',
clientId: 'xxxxx',
options: {
keepalive: 60,
protocolId: 'MQTT',
protocolVersion: 4,
clean: true,
reconnectPeriod: 1000,
connectTimeout: 30 * 1000,
rejectUnauthorized: false,
...
},
msgMiddleware: [ 'xxxx' ],
},
bar: {
...
},
}
}
See mqtt API Documentation for all available options.
In controller, you can use app.emqtt
to get the mqtt instance, check mqtt to see how to use.
// app/router.js
module.exports = app => {
const { router } = app;
router.get('/', app.emqtt.controller.home.index);
// mqtt_client,subscribe topic: a
app.emqtt.route('a', app.mqtt.controller.home.index);
};
// app/mqtt/controller/home.js
module.exports = app => {
return class HomeController extends app.Controller {
async index() {
/**
* ctx.req = {
* topic: 'a',
* msg: 'xxxxxxxxxxxx',
* }
*/
// publish
await this.app.emqtt.publish('topic1', 'msg123456', { qos: 0 });
}
};
};
// app/mqtt/middleware/msg2json.js
module.exports = () => {
return async (ctx, next) => {
try {
console.log(
ctx.helper.timeFormat(new Date()),
`[MQTT-Topic: ${ctx.req.topic}] recieved`
);
ctx.req.message = JSON.parse(ctx.req.msg);
} catch (err) {
ctx.logger.error(err);
}
await next();
console.log(
ctx.helper.timeFormat(new Date()),
`[MQTT-Topic: ${ctx.req.topic}] Response_Time: ${
ctx.starttime ? Date.now() - ctx.starttime : 0
}ms`
);
};
};
If your Configure with multi clients, you can use app.emqtt.get(instanceName)
to get the specific mqtt instance and use it like above.
Please open an issue here.
FAQs
egg plugin for enn-mqtt
The npm package enn-egg-mqtt receives a total of 0 weekly downloads. As such, enn-egg-mqtt popularity was classified as not popular.
We found that enn-egg-mqtt 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.