
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@builder6/moleculer
Advanced tools
Moleculer Module For Nestjs Framework
Nestjs and Moleculer are amazing framework for building server-side application. They have different advantages. This module allow bring elegent micoservice API from Moleculer to Nestjs.
This module works like other Nestjs third-party module. You can use it in NestApplication, without creating NestMicroservice instance.
using InjectBroker to inject Moleculer Broker.
using InjectService to inject Moleculer Service.
IMPORTANT: you need Nest > v4.5.10+
npm install @builder6/moleculer --save
OR
yarn add @builder6/moleculer
... //imports
@Module({
imports: [
MoleculerModule.forRoot({
brokerName: "customBrokerName", // if you have multiple broker
namespace: "yourNameSpace", // some moleculer options
transporter: "TCP",
// hotReload: true, // hotReload feature from moleculer will not work
})
OtherModule
],
controllers: [
homeController, // controller that extrends Moleculer Service
],
// as usual, nothing new
})
export class ApplicationModule {}
import { Service, Context, ServiceBroker } from 'moleculer';
import { Inject, Injectable } from '@nestjs/common';
import { HomeService } from "../services/home.service";
import { InjectBroker } from 'nestjs-moleculer';
@Injectable()
export class HomeController extends Service {
constructor(@InjectBroker() broker: ServiceBroker,
@Inject(HomeService) private readonly homeService: HomeService
) {
super(broker);
this.parseServiceSchema({
name: "home",
settings: {
upperCase: true
},
actions: {
sayHello: this.sayHello,
},
created: this.serviceCreated,
started: this.serviceStarted,
stopped: this.serviceStopped,
});
}
serviceCreated() {
this.logger.info("home service created.");
}
serviceStarted() {
this.logger.info("home service started.");
}
serviceStopped() {
this.logger.info("home service stopped.");
}
async sayHello(ctx: Context) {
return this.homeService.sayHello(ctx.params.name);
}
}
for more detail of How to declare Moleculre Service in ES6 Class
import { Injectable, OnModuleInit } from '@nestjs/common';
import { InjectBroker } from "nestjs-moleculer";
import { ServiceBroker } from "moleculer";
@Injectable()
export class AppService {
constructor(
@InjectBroker() private readonly broker: ServiceBroker,
) {
}
onModuleInit() {
setTimeout(() => {
this.broker.call('home.sayHello', { name: "jiangzhuo" }).then((res) => {
console.log(res)
})
}, 1000)
}
}
This project is licensed under the MIT License - see the LICENSE.md file for details.
FAQs
using Moleculer as a Nest module
The npm package @builder6/moleculer receives a total of 925 weekly downloads. As such, @builder6/moleculer popularity was classified as not popular.
We found that @builder6/moleculer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.