Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
abstract-express-router
Advanced tools
library to automagically create an express router-object with basic validation for params based on a javascript object
An framework for express.js which abstracts much of the syntax needed for creating an express-router while keeping the core-functionality. This allows for a quick and clean creation of routers in a single file without writing repetitive code. It also provides simple validation functionality for path and query parameters and for the body.
npm install abstract-express-router
Also make sure that you have Node.js 10 or newer in order to use it.
The main functionality is the creation of a router. For this it is necessary to create a Javascript object reflecting the structure of your api via string - object - pairs. Certain key names are restricted as they refer to specific functionality, but every other key will resolve into a seperate router instance with anything placed into the object mapped to its key value. It is possible to have multiple url-segments in a single key and it is also possible to use path parameters (e.g. "objects/:id").
The reserved keys are the following:
Using an action verb will cause the creation of an endpoint. Each endpoint has the required key controller and allows for middleware and body, query, params
Controllers are required keys for every endpoint. They have to be a function and to terminate the request.
Middleware is defined as an array of functions. They can be added in any layer.
Static is a shorthand for express static routing and requires the source path for the static files as value. This keyword can be used in any layer except endpoints.
body, query and params allow for verification. body and query are restricted to endpoints, but params can be used on any layer. Validation can be done either by using one of the provided validators, or by passing a evaluation function which returns a boolean. It is possible to have multiple layers of objects for the validation. A failed validation for params will cause express to skip to the next router, while a failed validation for query and body terminates the request with error code 400.
This library provides some convenience functions for triggering the validation:
This Validator will evaluate the value against the provided regular expression.
const number = regexpValidator(/^[a-z]{0,25}$/)
This Validator will evaluate whether the value is part of the provided list.
const repository = oneOfValidator(['test', 'foo'])
It is possible to pass a function in the configuration object. If this is done any logging will be passed into this function, split into the loglevel and the message:
{
logLevel: number
message: string
}
If no logger function is configured, all logging will be prefixed with the application name, filtered by log level and the output send to console.log.
This library supports 4 log levels: 0
- silent, 1
- error, 2
- warning, 3
- info
default: 3
Whether to use the default catchAll returning a 404 error.
default: true
Configuration object to be passed into the json/urlEncoded bodyparser.
import {createRouter, oneOfValidator, regexpValidator } from 'abstract-express-router'
import { createServer } from 'http'
const testMiddleware = testMiddleware2 = testMiddleware3 = (req, res, next) => {
// do whatever
next()
}
// different types of validators
const number = regexpValidator(/^[a-z]{0,25}$/)
const repository = oneOfValidator(['test', 'foo'])
const id = regexpValidator(/^[0-9]{0,10}$/)
const report = (value) => value === 'report'
// handler
const handler1 = handler2 = (req, res) => res.status(200).send('hello')
const api = {
middleware: [testMiddleware],
api: {
endpoint1: {
middleware: [testMiddleware2],
post: {
body: { branch, report, repository },
controller: handler1,
},
},
endpoint2: {
':id': {
params: { id },
put: {
middleware: [testMiddleware3],
body: {
report,
base: branch,
repository,
},
controller: handler2,
},
},
},
},
static: './path/of/static/content/'
}
const settings = {
logger,
logLevel: 2,
useCatchAll: false
}
const app = createRouter(api, settings)
app.use(*, (req, res) => res.status(404).send('No luck here, try elsewhere!))
const server = createServer(app)
server.listen(8080)
10.04.2019: added static router
FAQs
library to automagically create an express router-object with basic validation for params based on a javascript object
The npm package abstract-express-router receives a total of 2 weekly downloads. As such, abstract-express-router popularity was classified as not popular.
We found that abstract-express-router 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.