This guide is an example of how to develop a function in Typescript with the Functions Framework.
-
Use gts to configure Typescript.
npx gts init
-
Install the required packages:
npm install @openfunction/functions-framework npm install @types/express concurrently nodemon --save-dev
-
Add a
start
script topackage.json
, passing in the--source
flag to point to the compiled code directory (configured bygts
in this example). Also add awatch
script to use for development:"scripts": { "start": "functions-framework --source=build/src/ --target=helloWorld", "watch": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec npm run start\"", ... }
-
Replace the contents of
src/index.ts
with:import type { HttpFunction } from '@openfunction/functions-framework/build/src/functions'; export const helloWorld: HttpFunction = (req, res) => { res.send('Hello, World'); };
-
Start the built-in local development server in watch mode:
npm run watch
This will continuously watch changes to your TypeScript project and recompile when changes are detected:
[12:34:56 AM] Starting compilation in watch mode... [12:34:57 AM] Found 0 errors. Watching for file changes. ... Serving function... Function: helloWorld URL: http://localhost:8080/
-
Adjust
main
field inpackage.json
to point to the compiled javascript source."main": "build/src/index.js", ...
-
Remove
prepare
script inpackage.json
created by gts. This is because theprepare
script requires typescript to be installed and will cause the function to fail to deploy if not removed. -
Deploy:
gcloud functions deploy helloWorld \ --runtime nodejs16 \ --trigger-http