Socket
Book a DemoInstallSign in
Socket

@firechecker/fastify

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@firechecker/fastify

Middleware for checking firebase authentication in Fastify APIs

0.0.10
latest
npmnpm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Firechecker - Fastify

Getting started

$ npm install --save fastify firebase-admin @firechecker/fastify
const admin = require('firebase-admin')
const fastify = require('fastify')({
  logger: true
})
const firechecker = require('@firechecker/fastify')

const serviceAccount = require('path/to/serviceAccountKey.json')

admin.initializeApp({
  credential: admin.credential.cert(serviceAccount)
})

fastify.addHook('preHandler', firechecker())

fastify.get('/', function (request, reply) {
  reply.code(200).send({
    access: true
  })
})

fastify.listen(3000, function (error, address) {
  if (error) {
    fastify.log.error(error)
    process.exit(1)
  }

  fastify.log.info(`Server listening on ${address}`)
})

FAQs

Package last updated on 26 Sep 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.