DEV Community

Discussion on: SSH server with WebPack

 
romanbon profile image
rbondarenko
  1. Yes, you’re right, but then there’s the same problem with github - if several developers are working on the same thing at the same time, they will definitely have a merge conflict. But why would several developers want to do the same thing at the same time? That’s impractical and hardly imaginable.
  2. It depends on the components you use - e.g. you can get Hot Module Replacement which “exchanges, adds, or removes modules while an application is running, without a full reload”. webpack.js.org/concepts/hot-module... And since I don’t support the idea of having several devs to work on the same code, that’s not something I would be concerned about. The thing is that if you work with a team of developers, you can get an overview of the project at any time. Of course, I could just show them what I have on my local machine, but if they are not in the same office or city, that would pose a problem.
  3. Talking about resources, just as I said above - I want to use a convenient IDE, and if I use WebPack locally, it can get too heavy sometimes.

Cheers,
Roman