
Research
Shai-Hulud Descends to Hades: Miasma Worm Campaign Spreads with New PyPI Wave
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.
justchat-mc
Advanced tools
A node.js client and server lib for JustChat.
Using npm:
npm install --save-dev node-justchat
Using yarn:
yarn add --dev node-justchat
import { JustChatServer } from 'node-justchat';
const server = new JustChatServer({
// Server name
name: 'JustChat Server',
// Server uuid
id: '123'
// Server port
port: 8080,
// if the pulse should be enabled
enableTimeout: true,
// if the server should be in single mode
singleMode: false,
});
// Listen for Chat Messages
server.on('chat', (message) => {
console.log(message);
});
// Listen for Broadcast Messages
server.on('broadcast', (message) => {
console.log(message);
});
// Listen for List Messages
server.on('list', (message) => {
console.log(message);
});
// Send Chat Messages
const chatMsg = {
world: '576493373',
world_display: 'Bot tests',
sender: 'Bot tester',
content: [
{
type: 'text',
content: 'Hello world!',
}
]
}
server.sendChatMessage(chatMsg, {
name: 'Client',
id: '321',
});
// Send List Messages
const listMsg = {
world: '576493373',
world_display: 'Bot tests',
sender: 'Bot tester',
}
server.sendListMessage(listMsg, {
name: 'Client',
id: '321',
});
import { JustChatClient } from 'node-justchat';
const client = new JustChatClient({
address: 'localhost',
port: 8080,
name: 'Client',
id: '321',
})
// Listen for Chat Messages
client.on('chat', (message) => {
console.log(message);
});
// Listen for Broadcast Messages
client.on('broadcast', (message) => {
console.log(message);
});
// Listen for List Messages
client.on('list', (message) => {
console.log(message);
});
// Send Chat Messages
const chatMsg = {
world: '576493373',
world_display: 'Bot tests',
sender: 'Bot tester',
content: [
{
type: 'text',
content: 'Hello world!',
}
]
};
client.sendChat(chatMsg);
// Send List Messages
const listMsg = {
world: '576493373',
world_display: 'Bot tests',
sender: 'Bot tester',
};
client.sendList(listMsg);
FAQs
A node.js client and server lib for JustChat.
We found that justchat-mc 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
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.