Leave a Comment
Using npm registry from corporate network
In a company we have some kind of proxy that does not allow to install npm packages via npm or yarn.
You can get rid of this problem using this addition to yarn add:
yarn add react-redux-form --registry="https://registry.npmjs.org"
Or you can also replace global property with
npm config set registry https://registry.npmjs.org
LEAVE A COMMENT
Для отправки комментария вам необходимо авторизоваться.