How to Install Bold BI Embedded SDK NPM Package and Yarn Package of a Particular Version?
This article will explain how to install the Bold BI Embedded SDK NPM package for a particular version in JavaScript embedding. To accomplish this, you need to follow the below steps,
Steps to install a specific version of the Bold BI Embedded SDK NPM package:
-
Open the terminal or command prompt on your machine.
-
Navigate to the project directory where you want to install the Bold BI Embedded SDK NPM package.
-
Insert the following command to install the Bold BI embedded SDK NPM package with a specific version.
npm install @boldbi/boldbi-embedded-sdk@<version>
Replace the
<version>
with the version number you want to install, for example:npm install @boldbi/boldbi-embedded-sdk@6.1.8
-
Run the above command. This will install version 6.1.8 of the Bold BI Embedded SDK NPM package. You can verify this in
package.json
file. -
Once the installation is complete, start using the Bold BI embedded SDK NPM package in your project by importing it into your JavaScript code.
import {BoldBI} from '@boldbi/boldbi-embedded-sdk';
Similarly, the yarn package can also be installed by using the below command,
yarn add @boldbi/boldbi-embedded-sdk@6.1.8
Related Links:
https://help.boldbi.com/embedded-bi/javascript-based/getting-started-with-npm/