# 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.sceenic.co/watch-together-sdk/sscale-confluence-tutorials/web/create-a-new-project.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
