
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.
URL mapping for jade & pug. Because we can't create dynamic routers like this: More Detail
entries.map(entry => {
router.get(entry.url, req => res.render(entry.view));
})
npm install jadewalker
to install jadewalker.jade
OR pug
file.
//- jadewalker=/url
doctype html
html
title jadewalker
body
p Hello jadewalker!
router
Express router OR Koa router.dir
View directory.type
express
Create routers for Express application.koa
Create routers for Koa application.koa2
Create routers for Koa@2 application.const Koa = require('koa');
const Router = require('koa-router');
const views = require('koa-views');
const jadewalker = require('../index.js');
const app = new Koa();
const router = new Router();
app.use(views(`${__dirname}/views`));
jadewalker({
router,
dir: `${__dirname}/views`,
type: 'koa2'
});
app.use(router.routes());
app.listen(3000);
const express = require('express')
const jadewalker = require('../index.js');
const app = express();
app.set('views', `${__dirname}/views`);
app.set('view engine', 'jade');
jadewalker({
router: app,
dir: `${__dirname}/views`,
type: 'express'
});
app.listen(3000);
Set NODE_DEBUG=jadewalker
to show debug log.
FAQs
URL mapping for jade.
The npm package jadewalker receives a total of 1 weekly downloads. As such, jadewalker popularity was classified as not popular.
We found that jadewalker 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.