I have App A and App B which has common code in node.js.
Commom
d node_modules
Dal.js
helpers.js
logger.js
package.json
App A
d node_modules
d views
d routes
app.js
package.json
App B
d node_modules
d views
d routes
app.js
package.json
There is start-up script that starts services today and works fine on a local machine.
I couldn't deploy this to Azure Web App. The deployment is failing as it couldn't find package.json at root folder. Is it possible to deploy multiple services to Web App or it only allows one. I know we can make NPM for common and have separate, but it creates long-term problem of knowing/managing bunch of repo's for each service and common code. Any suggestions are greatly appreciated.