D Turner
D Turner

Reputation: 55

How to best transfer a React project from Windows to Linux

I have several simple React projects that I have built using create-react-app on Windows 10 and wish to transfer them to my Linux development system. I don't think it's as simple as zip and unzip. Can someone suggest the appropriate way to do this? Or should the above mentioned zip/unzip work? Thanks in advance.

Upvotes: 1

Views: 1436

Answers (1)

Alserda
Alserda

Reputation: 4744

As long as you get the source code over, anything is fine really. A recommended way of doing that is transferring everything except for the node_modules folder, as running npm install can install OS-specific dependencies as well.

Upvotes: 1

Related Questions