Socket
Socket
Sign inDemoInstall

@remap/authenticate-middleware

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@remap/authenticate-middleware - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "@remap/authenticate-middleware",
"version": "1.0.0",
"version": "1.0.1",
"description": "ReMap Authenticate Middleware",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -25,2 +25,14 @@ # authenticate-middleware

)
// ./services/authentication example
module.exports = async idToken => {
const res = await fetch(process.env.AUTHENTICATION_ENDPOINT, {
method: 'POST',
body: JSON.stringify({ id_token: idToken }),
mode: 'cors',
})
return await res.json()
}
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc