fastify-firebase-auth

0.0.2 • Public • Published

fastify-firebase-auth

js-standard-style

Fastify Firebase Auth API plugin.
Under the hood the firebase is used, the options that you pass to register will be passed to the Firebase service.

Install

npm i fastify-firebase-auth --save

Usage

Add it to you project with register and you are done!
This plugin will add the auth namespace in your Fastify instance, with the all functions in the Firebase Auth API:

Example:

const fastify = require('fastify')
 
fastify.register(require('fastify-firebase-auth'), {
    apiKey: <FIREBASE_API_KEY>,
    databaseURL: <DATABASE_URL>,
    projectId: <PROJECT_ID>,
    storageBucket: <URL_STORAGE_BUCKET>
})
 
fastify.post('/signin', async (request, reply) => {
    const {email, password} = request.body;
    const response = await fastify.auth.signInWithEmailAndPassword(email, password);
    return response;
});
 
fastify.listen(3000, err => {
  if (err) throw err
  console.log(`server listening on ${fastify.server.address().port}`)
})

License

Licensed under MIT.

Readme

Keywords

none

Package Sidebar

Install

npm i fastify-firebase-auth

Weekly Downloads

4

Version

0.0.2

License

ISC

Unpacked Size

6.77 kB

Total Files

6

Last publish

Collaborators

  • oxsav