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.
npm i fastify-firebase-auth --save
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}`)
})
Licensed under MIT.