0

I'm trying to install an NPM package called Bulksplash. But I have no idea how to install it. I've tried using several guides on general package installations but they're bit tech savvy and I couldn't understand it.

https://github.com/MehediH/Bulksplash

If possible, can anyone please help me how to install this on my Mac? Thanks in advance.

RobC
  • 22,977
  • 20
  • 73
  • 80
Gihan
  • 3,144
  • 2
  • 9
  • 36

1 Answers1

1

Using the view command, i.e. running:

npm view bulksplash

via the macOS "Terminal" application reports:

npm ERR! 404 'bulksplash' is not in the npm registry.

Therefore you'll need to install the package from Github directly, as per this answer.

i.e. Run the following command in your "Terminal" application:

 npm install git+https://github.com/MehediH/Bulksplash.git
RobC
  • 22,977
  • 20
  • 73
  • 80