Development environment for Reactjs

Asked

Viewed 78 times

-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

  • 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?

  • That’s right. The default for installing packages in React is IDE-independent.

  • I particularly like things separate, ie front-end in vsCode, back-end in visual studio.

  • But nothing prevents using the same IDE for both activities.

1 answer

0

You can place the npm commands at the windows command prompt itself. You only need to enter the project folder. The default for installing packages in React is IDE-independent.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.