I\'m trying to install and run Reaction on mac osx 10.12.15 within below command
npm install -g reaction-cli reaction init cd reaction reaction
Then I got below
This is might be due to the limit on file open files on mac. By default it is set to low. You will need to increase the default size.
$ echo kern.maxfiles=65536 | sudo tee -a /etc/sysctl.conf
$ echo kern.maxfilesperproc=65536 | sudo tee -a /etc/sysctl.conf
$ sudo sysctl -w kern.maxfiles=65536
$ sudo sysctl -w kern.maxfilesperproc=65536
$ ulimit -n 65536
Refer this link for more details.