Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
osprey-router
Advanced tools
Simple middleware-style router for RAML based on router.
npm install osprey-router --save
This module is an instance of router with support for RAML paths and parameters.
All options and functions from router are supported, except the second argument can be an optional array of webapi-parser Parameter
objects. For example:
const finalhandler = require('finalhandler')
const http = require('http')
const Router = require('osprey-router')
const utils = require('./utils')
const router = Router()
const parameters = utils.getUriParameters()
router.get('/{userId}', parameters, function (req, res) {
console.log(typeof req.params.userId)
res.setHeader('Content-Type', 'text/plain; charset=utf-8')
res.end(req.params.userId)
})
const server = http.createServer(function (req, res) {
router(req, res, finalhandler(req, res))
})
server.listen(3000)
When you specify the parameter type, it'll automatically be parsed in the native JavaScript type.
Apache 2.0
FAQs
Simple middleware-style router for RAML based on router
The npm package osprey-router receives a total of 374 weekly downloads. As such, osprey-router popularity was classified as not popular.
We found that osprey-router demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.