
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
module for working with socket.io with predefined rules. StrapIO will look at Role permission on each action. StrapIO is looking for all roles which have access to the given contenttype and action type.
UPDATE v2:
You need to subscribe first before you receive any data. socket.emit('subscribe', 'article') article is the content-type.
you need to install strapio v2. Version 3 will not work with strapi below 4.
npm i strapio
src/index.js
bootstrap({strapi}) {
process.nextTick(() => {
strapi.StrapIO = (require("strapio"))(strapi);
});
},
bootstrap({strapi}) {
process.nextTick(() => {
strapi.StrapIO = (require("strapio"))(strapi, {
path: "/other/path/",
cors: { origin: "*", methods: ["GET", "POST"] },
});
});
},
api/<content-type>/controllers/<content-type>.js
module.exports = {
async create(ctx) {
let entity;
if (ctx.is("multipart")) {
const { data, files } = parseMultipartData(ctx);
entity = await strapi.services.CONTENTTYPE.create(data, { files });
} else {
entity = await strapi.services.CONTENTTYPE.create(ctx.request.body);
}
strapi.StrapIO.emit(this, "create", entity);
// or send custom event
strapi.StrapIO.emitRaw("myroom", "myevent", entity);
return sanitizeEntity(entity, { model: strapi.models.CONTENTTYPE });
},
async update(ctx) {
const { id } = ctx.params;
let entity;
if (ctx.is("multipart")) {
const { data, files } = parseMultipartData(ctx);
entity = await strapi.services.CONTENTTYPE.update({ id }, data, {
files,
});
} else {
entity = await strapi.services.CONTENTTYPE.update(
{ id },
ctx.request.body
);
}
strapi.StrapIO.emit(this, "update", entity);
return sanitizeEntity(entity, { model: strapi.models.CONTENTTYPE });
},
};
const io = require("socket.io-client");
// Handshake required, token will be verified against strapi
const socket = io.connect(API_URL, {
query: { token },
});
socket.emit("subscribe", "article"); // article is the room which the client joins
socket.on("find", (data) => {
console.log("article:", data);
//do something
});
socket.on("update", (data) => {
// do something
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.2.0/socket.io.js"></script>
<script>
// Handshake required, token will be verified against strapi
(function () {
const socket = io("http://localhost:1337/", {
path: "/sockettest/",
query: {
token,
},
});
socket.emit("subscribe", "article"); // article is the room which the client joins
socket.emit("subscribe", "myroom"); // custom room
socket.on("find", (data) => {
//do something
});
socket.on("update", (data) => {
// do something
});
socket.on("myevent", (data) => {});
})();
</script>
DEBUG=strapio npm run developDEBUG=* npm run developCurrently tested with strapi v4
You can install strapio with a plugin npm i strapi-plugin-socket-io.
just do it over github or chat with me @Discord
FAQs
Socket IO Module for Strapi
The npm package strapio receives a total of 795 weekly downloads. As such, strapio popularity was classified as not popular.
We found that strapio 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.