Fixed functions demos #2025

Merged
garrettluu merged 10 commits from azure into master 2020-06-25 19:30:56 +00:00
Showing only changes of commit f32ce495d0 - Show all commits

@ -121,3 +121,13 @@ HTTP trigger that converts the submitted file to CSV.
When deploying on Azure, be sure to install the module from the remote console,
as described in the "Azure Functions JavaScript developer guide".
#### Firebase Functions
Firebase functions can be triggered via HTTP requests, similar to a REST API.
In the `Firebase` directory, the example function reads files sent through
HTTP and converts it to a CSV and sends the response in the form of a string.
To run this demo locally, run `npm i -g firebase-tools` to install the
Firebase CLI and `npm i` to install the dependencies, then run `firebase
emulators:start` to start the local server.