lambda icon indicating copy to clipboard operation
lambda copied to clipboard

Missing passport from package.json

Open dvalentiate opened this issue 9 years ago • 4 comments

Missing passport dependency in package.json.

When trying to do docker build -t lambda-example . I got the following:

npm info it worked if it ends with ok
npm info using [email protected]
npm info using [email protected]
npm info lifecycle [email protected]~prestart: [email protected]
npm info lifecycle [email protected]~start: [email protected]

> [email protected] start /usr/src/app
> node lib/lambdad.js

module.js:339
    throw err;
    ^

Error: Cannot find module 'passport'
    at Function.Module._resolveFilename (module.js:337:15)
    at Function.Module._load (module.js:287:25)
    at Module.require (module.js:366:17)
    at require (module.js:385:17)
    at Object.<anonymous> (/usr/src/app/lib/lambdad.js:15:16)
    at Module._compile (module.js:425:26)
    at Object.Module._extensions..js (module.js:432:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:311:12)
    at Function.Module.runMain (module.js:457:10)

npm info lifecycle [email protected]~start: Failed to exec start script
npm ERR! Linux 4.1.10-boot2docker
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "start"
npm ERR! node v5.0.0
npm ERR! npm  v3.3.6
npm ERR! code ELIFECYCLE
npm ERR! [email protected] start: `node lib/lambdad.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] start script 'node lib/lambdad.js'.
npm ERR! This is most likely a problem with the lambda-daemon package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node lib/lambdad.js
npm ERR! You can get their info via:
npm ERR!     npm owner ls lambda-daemon
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /usr/src/app/npm-debug.log

dvalentiate avatar Nov 13 '15 15:11 dvalentiate

I need to get this updated and cleaned up a bit more but haven't had the time. I'll see if I can get things updated early next week.

jasnell avatar Nov 13 '15 18:11 jasnell

After giving this project a spin I realized that I needed more a server that could support multiple lambdas at the same time.

So I created it https://www.npmjs.com/package/dev-lambda .

Thanks for the inspiration, particularly on using docker with node.

dvalentiate avatar Nov 18 '15 05:11 dvalentiate

@dvalentiate ... very happy that you were able to get inspiration from this :-)

jasnell avatar Nov 18 '15 05:11 jasnell

I just added "passport": "*" into daemon/package.json and it worked even with the latest/current version of passport.

thond1st avatar Jun 10 '16 06:06 thond1st