openfaas-incubator / node8-express-template

Node.js 8 template for OpenFaaS with HTTP via Express.js
MIT License
15 stars 18 forks source link

Fixes #7 giving function dev the ability to handle OPTIONS CORS headers #9

Open nerdguru opened 6 years ago

nerdguru commented 6 years ago

Simple two line fix that enables the function developer to write to the response headers for the OPTIONS verb in the same way they already could for GET and POST. They can now branch in function code on event.method for OPTIONS and handle CORS headers as they see fit.