Created by: tuchk4
It is very useful to use npm-link for react-scripts
package when want to test new (local) developed features on existing application.
$ cd create-react-app/packages/react-scripts
$ npm link
$ cd ~/any-existing-app
$ npm link react-scripts
$ npm start
Related to #1107 (closed)