How do I require the events
Node module within my React Native project? I ran into some module dependency issues with util
and http
which I resolved by using Browserify to package.
I try to take the same approach with events
:
npm install events
var EventEmitter = require('events').EventEmitter;
After packaging with Browserify, I still get the same error from React Native: "Requiring unknown module 'events'."