Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
enn-egg-mqtt
Advanced tools
mqtt client based on mqtt for egg framework for ENN company
$ 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 1 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.