
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.
@m3o/m3o-node
Advanced tools
The node client for the M3O Platform
Installation:
npm install --save @m3o/m3o-node
Make a standard http request
const m3o = require('@m3o/m3o-node');
new m3o.Client({ token: 'INSERT_YOUR_YOUR_M3O_TOKEN_HERE' })
.call('helloworld', 'call', {"name": "John"})
.then((response) => {
console.log(response);
});
The output will be:
{ message: 'Hello John' }
Make a websocket streaming request
const client = require("@m3o/m3o-node")
new client.Client({ token: 'INSERT_YOUR_YOUR_M3O_TOKEN_HERE' })
.stream("helloworld", "stream", {"name": "John", "messages": 10})
.then(stream => {
stream.recv(msg => {
console.log("message received: ", msg)
})
}).catch(e => {
console.log(e)
})
setInterval(() => {}, 5000);
Above example will output:
message received: { message: 'Hello John' }
message received: { message: 'Hello John' }
message received: { message: 'Hello John' }
message received: { message: 'Hello John' }
message received: { message: 'Hello John' }
message received: { message: 'Hello John' }
message received: { message: 'Hello John' }
message received: { message: 'Hello John' }
message received: { message: 'Hello John' }
message received: { message: 'Hello John' }
FAQs
M3O Node.js Client
The npm package @m3o/m3o-node receives a total of 1 weekly downloads. As such, @m3o/m3o-node popularity was classified as not popular.
We found that @m3o/m3o-node demonstrated a not healthy version release cadence and project activity because the last version was released 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.

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.