Skip to content

Latest commit

 

History

History
 
 

functions-express

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Express.js & Cloud Functions for Firebase

HTTP Cloud Functions share slightly modified request/response objects to the popular Node.js server package, Express.js. This allows us to pass through an existing Express app to the Cloud Function and have it pass the compatible req/res objects to our server.

This allows for familiar API development with the use of existing middleware and authentication models.

The accompanying Medium post.

Install & Run

# Install
yarn
# Locally serve
yarn serve
# Deploy
yarn deploy