-1
I use the Visual Studio with Asp.Net and C# a few years ago and now I’m finishing some courses Reactjs. But I’m having difficulties with the development environment.
None of the courses used the Visual Studio. Only the VS Code. And the applications during the courses are created using the NPM of Node.
Currently I can create a project on Visual Studio and install the Reactjs + Babel without problems as they are only libs which may be imported into HTML... But when it comes to dependencies, modules and other things that are usually installed by NPM do not know what to do or can not find an equivalent that works well in Visual Studio.
Which libraries are recommended? How to overcome this difficult relationship between NPM and VS?
You can put the npm commands in the windows command prompt itself. You only need to enter the project folder
– Lucas Augusto Coelho Lopes
If I give an "npm install" inside the project folder, won’t I just throw the package files into the same directory? This is the installation form recommended for Visual Studio users?
– Vitor
That’s right. The default for installing packages in React is IDE-independent.
– Lucas Augusto Coelho Lopes
I particularly like things separate, ie front-end in vsCode, back-end in visual studio.
– Marconi
But nothing prevents using the same IDE for both activities.
– Lucas Augusto Coelho Lopes