How to install Watchman on Windows (win10)?

For those using Chocolatey (this is not published on the website yet, but found the info in the github repo): Watchman is available to install via the Chocolatey Windows package manager. Installation is as simple as: PS C:\> choco install watchman Reference: https://github.com/facebook/watchman/blob/573b18b86b88759f31e83fa2e1837539d138de22/website/_docs/install.markdown#installing-on-windows-via-chocolatey Beware that installing Chocolatey itself is somewhat tedious, but here is the … Read more

React Native Error: ENOSPC: System limit for number of file watchers reached

Linux uses the inotify package to observe filesystem events, individual files or directories. Since React / Angular hot-reloads and recompiles files on save it needs to keep track of all project’s files. Increasing the inotify watch limit should hide the warning messages. You could try editing # insert the new value into the system config … Read more