Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 859 Bytes

TROUBLESHOOTING.md

File metadata and controls

22 lines (14 loc) · 859 Bytes

Troubleshooting issues on local development

A list of common issues that developers face and how to resolve them.

Error: Module did not self-register.

This could happen if node modules were compiled with a different version of node, or if node modules fail to compile due to other configuration errors. Running tests locally requires node to specifically be of version 12.18.4. You can use nvm to manually set the node version.

Run the following commands to set the node version and then re-install the node modules:

nvm use 12.18.4
rm -r node_modules
npm install

JavaScript out of memory error

On your Docker application, go to Preferences > Resources and increase the amount of memory allocated for Docker.