Question

Deployment error in simple node.js app

When I try to deploy from web page I get

rapidapi-example@0.0.0 start [usfeelweapi] [2022-05-22 21:29:26] > node ./bin/www [usfeelweapi] [2022-05-22 21:29:26] [usfeelweapi] [2022-05-22 21:29:27] node:internal/modules/cjs/loader:936 [usfeelweapi] [2022-05-22 21:29:27] throw err; [usfeelweapi] [2022-05-22 21:29:27] ^ [usfeelweapi] [2022-05-22 21:29:27] [usfeelweapi] [2022-05-22 21:29:27] Error: Cannot find module ‘/workspace/bin/www’ [usfeelweapi] [2022-05-22 21:29:27] at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15) [usfeelweapi] [2022-05-22 21:29:27] at Function.Module._load (node:internal/modules/cjs/loader:778:27) [usfeelweapi] [2022-05-22 21:29:27] at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:77:12) [usfeelweapi] [2022-05-22 21:29:27] at node:internal/main/run_main_module:17:47 { [usfeelweapi] [2022-05-22 21:29:27] code: ‘MODULE_NOT_FOUND’, [usfeelweapi] [2022-05-22 21:29:27] requireStack: []

Show comments

Submit an answer
Answer a question...

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Accepted Answer

I fixed it just changed “start”: “node ./bin/www” to “start”: “node app.js”