Installing our SDK

This section describes how to install our SDK.

Install the @typecastdev/react-lib package.

In the root folder of your app run one of the following commands to install @typecastdev/react-lib, depending on the package manager you use.

Note that if you do not use versions of packages listed in our peer dependencies list, you may have trouble installing our package. Please don't hesitate to contact our Maintainers, or check our troubleshooting section.

Using npm

npm install @typecastdev/react-lib

Using yarn

yarn add @typecastdev/react-lib

Using pnpm

pnpm install @typecastdev/react-lib

Verify the package installed correctly

Once you've installed the package, make sure you should see the following in your package.json

{
  "name": "your-web-app",
  "dependencies": {
    ...
    "@typecastdev/react-lib": "^x.x.x",
    ...
  },
  ...
}

Congratulations! You've successfully installed @typecastdev/react-lib in your codebase!

Last updated