From 293e55747ed0ee92b0ea241a29946bab0fdb24ec Mon Sep 17 00:00:00 2001 From: Lucas Holmquist Date: Wed, 5 Feb 2020 14:59:03 -0500 Subject: [PATCH] fix(README): update sample to use correct namespaced module (#26) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 27d2725..3da4610 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ still to be determined. In my current working directory, I have an `index.js` file like this. ```js -const framework = require('faas-js-runtime'); +const framework = require('@redhat/faas-js-runtime'); // My function directory is in ./function-dir framework(require(`${__dirname}/function-dir/`), server => {