
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
cds-common-jwt-support
Advanced tools
support
jwt
without xsuaa ans xssec, and give user much more features withjose
simply integrate the
cds-common-jwt-support
to you CAP nodejs project
npm i -S cds-common-jwt-support jose
server.js
const cds = require("@sap/cds");
const { configureJwt } = require("cds-common-jwt-support");
const jose = require("jose")
const publicKey = `
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7g4mOYr136bOzOB4hd+e
......
-----END PUBLIC KEY-----
`
cds.on("bootstrap", async (app) => {
configureJwt(app, {
key: await jose.importSPKI(publicKey, "PS256")
});
});
module.exports = cds.server;
package.json
{
"requires": {
"auth": {
"kind": "common-jwt"
},
"common-jwt": {
"impl": "cds-common-jwt-support"
}
}
}
FAQs
support common jwt with jose for @sap/cap
We found that cds-common-jwt-support 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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.