Skip to main content

Setup JavaScript SDK

Let's start powering your Dapp with DripVerse.

Prerequisites​

Minimum Requirements​

  • Node v16.x.x or above.

Install​

The library is available on Node Package Manager.

From inside your project root, run:

npm install dripverse --save

You can verify which package version is installed by running:

npm list

If you can see something like this below, we are good to go:

└── dripverse@x.x.x

Please check the latest version as we keep updating the library pretty often as we add new features, fixes and enhancements. You can find the version details here:

Update​

You can use ncu to look for newer version availability: ncu -u

Or you can update the package version on package.json directly:

"dependencies": {
...,
"dripverse": "0.5.0",
...
}

And then run:

npm install