
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
m_jet: a tool for prototyping websites and API's that supports re-connecting multiplexed websockets.
m_jet uses Routes, Shoe & Dataplex:
Please refer to routes documentation for its capabilities...
Data is sent via dataplex and named multiplexed websocket streams, in the browser and server. Dataplex behaves like any other stream, allowing you to pipe to and pipe from it. Check out dataplex's documentation for more usage examples.
npm install m_jet --save
var jet = require('m_jet').server();
jet.router.addRoute('/json/api', function (req, res) {
jet.json(res, { a: 'demo!' });
});
jet.router.addRoute('/', function (req, res) {
jet.render_html(res, 'index.html');
});
jet.router.addRoute('/wildcard/:id?', function (req, res, j) {
if (j.params.id === 'summin') {
res.end('<h1>wildcard route</h1>');
}
});
jet.socket(function (plex) {
plex.add('/demo', function () {
var d = new Readable;
d.push('1');
d.push('2');
d.push('3');
d.push(null);
return d;
});
});
jet.start();
var jet = require('m_jet').client();
jet(function (plex) {
let demo = plex.open('/demo');
demo.on('data', function (data) {
console.log(data);
});
});
var jet = require('m_jet').client();
jet(function (plex, session) {
let demo = plex.open('/demo');
demo.on('data', function (data) {
console.log(data);
});
session.on('connect', function () { console.log('connected!'); })
session.on('disconnect', function () { console.log('client disconnected!'); })
session.on('error', function (e) { console.log('an error has occured: ', e) })
// cleanly exit this websocket session...
session.destroy()
});
browserify ./client.js -o public/bundle.js
<script src="./bundle.js"></script>
FAQs
full stack node framework
We found that m_jet 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.