# 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 <a href="#web-javascriptandreact-createnewproject" id="web-javascriptandreact-createnewproject"></a>

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**

{% tabs %}
{% tab title="React JSX" %}

```jsx
npx create-react-app websdksample
cd websdksample
npm start
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
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.
{% endhint %}

{% hint style="warning" %}
**Note**: [npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher
{% endhint %}

* Then open your project through code editor.
