The change log of react-native mentions https://facebook.github.io/react/blog/2015/04/17/react-native-v0.4.html
NPM modules compatibility: There are a lot of libraries on NPM that do not depend on node/browser internals that would be really useful in React Native, such as superagent, underscore, ...
But It doesn't work for me. It is how I install, through package.json
# package.json
"dependencies": {
"react-native": "*",
"underscore": "^1.8.3"
...
And I indeed see it in the npm dependecy
# npm ls
├─┬ react-native@0.8.0
| ...
├── react-native-navbar@0.7.3
└── underscore@1.8.3
And it does work for some other react components
It is how I require
var _ = require('underscore');
But it doesn't work, _
is undefined