Installation
Table of Contents
Script from CDN
Include the Hub API library as a script in your page:
<script
src="https://cdn.jsdelivr.net/npm/@nimiq/hub-api@v1.2.3/dist/standalone/HubApi.standalone.umd.js"
integrity="sha256-5X6zryCUAPOnfjLU8tEtJrLdcslA2UI27RsUWnLAxHs=" crossorigin="anonymous"></script>
This will make the HubApi
object available globally on your site.
You can also import
from the CDN as an ES6 module:
<script type="module">
import HubApi from 'https://cdn.jsdelivr.net/npm/@nimiq/hub-api@latest/dist/standalone/HubApi.standalone.es.js';
// Your code here...
</script>
NPM and Bundlers
The Hub API can be installed from NPM to use with bundlers (for example Webpack, Rollup, etc.):
npm install --save @nimiq/hub-api
# or with yarn
yarn add @nimiq/hub-api
Then simply import or require it in your module:
import HubApi from '@nimiq/hub-api';
// or
const HubApi = require('@nimiq/hub-api');
Next: Usage