Skip to content

Instantly share code, notes, and snippets.

@kriscooke
Created April 27, 2020 22:40
Show Gist options
  • Save kriscooke/09ecfdb7160a72bae7240662bfc8395e to your computer and use it in GitHub Desktop.
Save kriscooke/09ecfdb7160a72bae7240662bfc8395e to your computer and use it in GitHub Desktop.
Prevent node-gyp from having to fetch node headers for rebuild during installation
#!/bin/bash
# https://github.com/nodejs/node-gyp/issues/812
npm install --nodedir $(which node)
# OR, in ~/.bash_profile:
npm_config_nodedir=$(which node)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment