
Research
5 Malicious Chrome Extensions Enable Session Hijacking in Enterprise HR and ERP Systems
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.
The ultimate transformation/build/compilation middleware/command line/etc. system for node.js
The ultimate transformation/build/compilation middleware/command line/etc. system for node.js
For a list of supported languages, check out transformers. Here are a few highlights:
You also get the following functionality for free:
If you think I've missed something, be sure to open an issue or submit a pull request.
First install the transform library:
$ npm install transform
Then make sure you also install whichever transform(s) you depend on, e.g.
$ npm install jade coffee-script
To get a transform, just pass the name of the transform, e.g.:
var coffee = require('transform')('coffee-script');
var jade = require('transform')('jade');
To serve a file with default options, just give it a file name:
app.get('/client.js', coffee('./client.coffee'));
app.get('/', jade('./index.jade'));
File paths are always resolved relative to the calling file using node's "require" algorithm.
By default, files are minified (if they result in JavaScript, JSON or CSS), cached and gzipped in production, but not in development.
You can change these settings on a case by case basis, e.g.
app.get('/client.js', coffee('./client.coffee', {minify: false}));
app.get('/client.min.js', coffee('./client.coffee', {minify: true}));
You can change options for all environments, or just specific ones:
jade.settings('self', true);
jade.settings.development('pretty', true);
jade.settings.production('debug', false);
MIT
FAQs
The ultimate transformation/build/compilation middleware/command line/etc. system for node.js
The npm package transform receives a total of 1,251 weekly downloads. As such, transform popularity was classified as popular.
We found that transform 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
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.