Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
chassis.io
Advanced tools
A lightweight wrapper around engine.io to let you add real-time features to your Express.js application.
npm install chassis.io
var chassis = require('chassis.io'),
server = express.createServer();
// Use the same interface that you would with
// attaching engine.io to your Express server.
var app = chassis.attach(server, options);
app.listen(3000);
You'll also need to add the following client-side JS libraries to your web application:
[TODO - put links to there libraries above]
In this order:
<script src="/js/engine.io.js"></script>
<script src="/js/chassis.io.js"></script>
There are 5 actions that you can call from the chassis.io client:
set
Set a data object on the server-side socket object.
subscribe
Subscribe to a channel on the server
publish
Publish a message to a channel on the server.
unsubscribe
Unsubscribe from a channel on the server.
rfc
Call a function on the server, and get back a response
npm test
Chassis.io was built as a replacement of the NowJS library in one of our applications. It's designed to mimic some of NowJS' functionality, but to also solve some of the challenges of running a websocket-based application across multiple Node.js processes.
© 2013 Axisto Media Ltd. Chassis.io is licensed under the MIT License.
FAQs
A lightweight wrapper around engine.io
The npm package chassis.io receives a total of 2 weekly downloads. As such, chassis.io popularity was classified as not popular.
We found that chassis.io 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.