Reputation: 55
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
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