MQTT
Installation
$ npm i --save mqttOverview
@@filename(main)
const app = await NestFactory.createMicroservice(ApplicationModule, {
transport: Transport.MQTT,
options: {
host: 'localhost',
port: 1883,
},
});Options
Last updated