Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@quorum/restify-oauth-server
Advanced tools
Complete, compliant and well tested module for implementing an OAuth2 Server/Provider with restify in node.js. This module is a fork of express-oauth-server.
This is a restify wrapper for oauth2-server.
$ npm install restify-oauth-server
The module provides two middlewares - one for granting tokens and another to authorise them. restify-oauth-server
and, consequently oauth2-server
, expect the request body to be parsed already.
The following example uses restify's 'body-parser
but you may opt for an alternative library.
var restify = require('restify');
var OAuthServer = require('restify-oauth-server');
var server = restify.createServer();
server.oauth = new OAuthServer({
model: {}, // See https://github.com/thomseddon/node-oauth2-server for specification
});
server.use(restify.acceptParser(server.acceptable));
server.use(restify.authorizationParser());
server.use(restify.bodyParser());
// Node Oauth2 Server expects the token request to be x-www-url-formencoded according to the Oauth2 spec
// Restify's body parser puts formencoded params in req.params, so we'll need a quick little bit of middleware to copy them over to the body
server.use(function(req, res, next) {
if(req.headers['content-type'] === 'application/x-www-url-formencoded') req.body = req.params;
return next();
});
server.post('/token', server.oauth.token());
server.get('/secret', server.oauth.authenticate(), function(req, res, next) {
res.send('Authenticated!');
});
server.listen(3000);
You can find examples in the examples folder for different databases, but I haven't updated them or tested them yet, so take them for what they are.
FAQs
OAuth provider for restify
The npm package @quorum/restify-oauth-server receives a total of 23 weekly downloads. As such, @quorum/restify-oauth-server popularity was classified as not popular.
We found that @quorum/restify-oauth-server 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.