I will be working on a project that includes Node.js, Angular and Mongo DB. I have been working in .Net environment for past 15+ years so this would be new world for me. So I have few questions.
What IDE is recommended for Node.js & Angular? I am pretty comfortable using Visual Studio and I have noticed VS has extensions so I can use it for Node.js & Angular. It has intellisense & shows compile time errors too. Is VS recommended or is there any better IDE available?
Coming from .Net world, all .Net projects must be compiled before you deploy them. Is this not true for Node.js or Angular projects? We don’t need to compile them? I have noticed my team member just copies the whole folder ( which has code) to prod server and that’s it. No compilation, No bin folder, No release folder.
I am Planning to use Jenkins for deployment, so if 2nd question is true then I guess I just have to write script that will copy the code to destination. ( and manipulate the config files accordingly based on environment)