Skip to content

Instantly share code, notes, and snippets.

@vitaliy-kravchenko-dev
Last active June 11, 2019 14:02
Show Gist options
  • Save vitaliy-kravchenko-dev/9efd65e7199d6cee27231135ce540543 to your computer and use it in GitHub Desktop.
Save vitaliy-kravchenko-dev/9efd65e7199d6cee27231135ce540543 to your computer and use it in GitHub Desktop.
Node.js tips

Increase memory limit for Node.js

Unix

export NODE_OPTIONS=--max_old_space_size=4096
# list all variables
printenv 

Windows

set NODE_OPTIONS=--max_old_space_size=4096
# or globally
setx NODE_OPTIONS --max_old_space_size=4096 /M
# list all variables
set 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment