Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't test cloud functions locally, emulator fails to start with TypeError: _onRequestWithOpts is not a function

When I try to start the shell for local testing from the functions directory in my project, the emulator starts but my functions are not able to be loaded.

When I run "npm run build" I receive no errors. What is happening?

I have tried removing the functions directory and creating it again using the firebase-tools cli but I still get the same error. I have also exported the admin credentials.

I'm using the default method created in the index.ts file generated from the firebase-tools cli.

import * as functions from 'firebase-functions';
import * as admin from 'firebase-admin';

admin.initializeApp();
// // Start writing Firebase Functions
// // https://firebase.google.com/docs/functions/typescript
//
export const helloWorld = functions.https.onRequest((request, 
response) => {
 response.send("Hello from Firebase!");
});

I expect the emulator to spin up instances of the function for testing but instead, I see this error:

✔  functions: Emulator started at http://localhost:5001
⚠  TypeError: _onRequestWithOpts is not a function
at Object.httpsProvider._onRequestWithOpts (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:278:24)
at Object.httpsProvider.onRequest (/usr/local/lib/node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js:283:34)
at Object.<anonymous> (/Volumes/G-DRIVE mobile USB-C/CLEAN UP/Documents/code_bank/typescript/theincrowdapp/functions/lib/index.js:9:38)
at Module._compile (internal/modules/cjs/loader.js:776:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:787:10)
at Module.load (internal/modules/cjs/loader.js:653:32)
at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
at Function.Module._load (internal/modules/cjs/loader.js:585:3)
at Module.require (internal/modules/cjs/loader.js:690:17)
at require (internal/modules/cjs/helpers.js:25:18)
⚠  We were unable to load your functions code. (see above)
   - It appears your code is written in Typescript, which must be compiled before emulation.
   - You may be able to run "npm run build" in your functions directory to resolve this.
like image 219
kreshendo Avatar asked Jul 09 '19 07:07

kreshendo


2 Answers

If you are experiencing this error, run npm install [email protected] in your functions directory.

This will be fixed soon, and you can follow along here: https://github.com/firebase/firebase-tools/issues/1480

like image 159
Sam Stern Avatar answered Sep 22 '22 07:09

Sam Stern


I found error in:

node_modules/firebase-tools/lib/emulator/functionsEmulatorRuntime.js

line 276:

const _onRequestWithOpts = httpsProvider._onRequestWithOpts;

should be:

const _onRequestWithOpts = httpsProvider._onRequestWithOptions;
like image 42
Roman Popov Avatar answered Sep 25 '22 07:09

Roman Popov