Create a New Project

Our SDK can be used either by creating a new project or by integrating it into an existing one.

Create a New Project

You can use any suitable method for you to create the project. Here is a few examples:

JavaScript

  • Open WebStorm and create a new Empty Project

  • Create two files index.js and index.html in your project folder.

React

npx create-react-app websdksample
cd websdksample
npm start

If you've previously installed create-react-app globally via npm install -g create-react-app, we recommend you uninstall the package using npm uninstall -g create-react-app to ensure that npx always uses the latest version.

Note: npx comes with npm 5.2+ and higher

  • Then open your project through code editor.

Last updated