
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
@evva/nest-xs3-api-client
Advanced tools
$ npm i @evva/nest-xs3-api-client
Client implementation for the Xesar 3 MQTT api interface.
# Nest Build
$ nest build
import { ClientService } from '@evva/nest-xs3-api-client';
@Module({
imports: [ClientModule],
providers: [AppService],
})
export class AppModule {}
Connect to the broker by passing connect options.
await this.clientService.connect({
host: 'host',
port: 1883,
cert: 'cert',
certCA: 'certCA',
key: 'key',
clientId: 'clientId',
token: 'token',
} as ClientConnectOptions);
Query specific resources from the Xesar API with support for pagination and filters.
let result = await this.clientService.queryPaged({
res: 'evva-components',
limit: 5,
offset: 0,
filters: [
{
type: 'eq',
field: 'status',
value: 'Synced',
},
],
});
You can auto-paginate all results by omitting the
limitandoffsetproperties.
A few of the supported resources are:
export type Resource =
| 'identification-media'
| 'authorization-profiles'
| 'access-protocol'
| 'persons'
| 'installation-points'
| 'evva-components'
| 'office-modes'
| 'time-profiles'
| 'zones';
Execute specific CQRS commands on the Xesar API.
let result = await this.clientService.commandCQRS(
'RequestAddMediumToInstallationMapi',
{
id: 'id',
commandId: 'commandId',
terminalId: 'terminalId',
hardwareId: 'hardwareId',
},
);
For a full list of supported commands and parameters check the /api/docs of your installation.
Proprietary
FAQs
Client implementation for the Xesar 3 MQTT api interface.
We found that @evva/nest-xs3-api-client demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.