Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
socks-routes
Advanced tools
A basic package for cleaning up some boilerplate behind express routes.
A basic package for cleaning up some boilerplate behind express routes.
Usage is very simple! When initializing your app, you should add this to your express code:
var express = require('express');
var path = require('path');
[...] // Require your various other modules here
var routes = require('socks-routes');
var app = express();
[...] // Set up your app here, such as sessions and other middleware
// Load the routes
routes.loadDir(app, path.join(__dirname, 'routes'));
[...] // Any final routes and middleware, and app start-up
For the routes themselves, I've boiled it down to a one-liner of boilerplate:
// Simple one-line drop in replacement for express's default route
// boilerplate, that specifies the route for `/`
var router = module.exports = require('socks-routes').Route('/');
// The rest is the same as express's default route skeleton
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});
Note that, as with bare express routes, you can specify multiple routers that can handle the same route if you feel that certain aspects of your app make more sense in separate files.
Socks-Routes will grab all the javascript routes in ./routes
and its
subdirectories and load them into the app. No more having to manually require
and app.use()
each and every route, they and their relevant information are
tucked away in one convenient file for you to modify as your needs change.
FAQs
A basic package for cleaning up some boilerplate behind express routes.
We found that socks-routes 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.