David Callanan
David Callanan

Reputation: 5790

NPM error installing Onboard.js package on Windows

I am trying to install Onboard.js on Windows using the following command:

npm i bnc-onboard

This is failing with the following error:

enter image description here

How can I fix this?

Upvotes: 1

Views: 87

Answers (1)

Milan Tenk
Milan Tenk

Reputation: 2715

The node-pre-gyp is not installed on the PC, installing it with npm install -g node-pre-gyp command solves the issue.

Upvotes: 1

Related Questions