paypal / react-engine

a composite render engine for universal (isomorphic) express apps to render both plain react views and react-router views
Apache License 2.0
1.45k stars 130 forks source link

Upgrade to React v15.0.1 #150

Closed remarkablemark closed 8 years ago

remarkablemark commented 8 years ago

react latest has been bumped from 0.14 to 15.

So when I follow the installation instructions from the README:

npm install react-engine react react-router history --save

I now get the following error:

└─┬ react-engine@3.2.1
  └── UNMET PEER DEPENDENCY react@^0.14.8

npm WARN react-dom@0.14.8 requires a peer of react@^0.14.8 but none was installed.

A temporary fix (until the next release) is to specify the react version for installation:

npm install react-engine react@0.14 react-router history --save
remarkablemark commented 8 years ago

React bumped to 15 in #165. Thanks @samsel!