Is it possible to run nodejs from Ubuntu container inside Docker and opening it in my local browser? I installed a Ubuntu image and entered into Ubuntu container, installing nodejs and building a simple application. I did not figure how to run nodejs...
I created a client and server folder, the server will serve the static and bundled (webpack) files from the client (using ReactJS) and also will have an API, I was wondering, is it wrong or not recommended to have only one package.json for both clien...