
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
connect-assets-jade
Advanced tools
Expose your jade views in the browser using connect-assets
.
Tips are welcome, but not expected.
$ npm install connect-assets-jade
See example app in /example
directory.
Integration with connect-assets
is done like so:
var express = require('express')
, assets = require('connect-assets')
, jadeAssets = require('connect-assets-jade') // <-- here
, PORT = 3000;
var app = express.createServer();
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.set('view options', {layout: false});
app.use(assets({
jsCompilers: {
jade: jadeAssets() // <-- and here
}
}));
app.use(app.router);
});
app.get('/', function(req, res){
res.render('home');
});
app.listen(PORT, function(){
console.log('Example app for connect-assets-jade running on port %d.', PORT);
});
connect-assets'
jsCompilers
configuration option.FAQs
Expose your jade views in the browser using connect-assets.
The npm package connect-assets-jade receives a total of 0 weekly downloads. As such, connect-assets-jade popularity was classified as not popular.
We found that connect-assets-jade 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 uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.