Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
vms:webdev:fabric [2017/03/17 03:52] admin [Fabric Components] |
vms:webdev:fabric [2017/03/17 19:06] (current) admin [Fabric Components] |
||
|---|---|---|---|
| Line 148: | Line 148: | ||
| <code> | <code> | ||
| > npm install -g composer-cli | > npm install -g composer-cli | ||
| + | </code> | ||
| + | |||
| + | There was a problem with this install command: hashtable blocked the process.\\ | ||
| + | A suggested solution on the Fabric Chat: | ||
| + | > So ... the root cause of my installation issues with `node-gyp` was the self-signed certificate in the chain | ||
| + | `node-gyp` doesn't honour the `strict-ssl=false` setting in `.npmrc` | ||
| + | > The workaround to get composer-cli to install was to run the following: | ||
| + | <code> | ||
| + | export NODE_TLS_REJECT_UNAUTHORIZED=0 | ||
| + | </code> | ||
| + | before | ||
| + | <code> | ||
| + | npm install -g composer-cli | ||
| </code> | </code> | ||