Skip to content

Commit 33d583b

Browse files
add setup steps
1 parent c67a2e7 commit 33d583b

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

articles/communication-services/tutorials/calling-widget/calling-widget-tutorial.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Following this tutorial will:
3131
- Teach you how to build a widget for starting calls on your webapp using the UI library.
3232

3333
## Prerequisites
34+
These are **needed** in order to follow this tutorial. Please contact your Teams admin for the last two items to make sure you are set up appropriately.
3435

3536
- [Visual Studio Code](https://code.visualstudio.com/) on one of the [supported platforms](https://code.visualstudio.com/docs/supporting/requirements#_platforms).
3637
- [Node.js](https://nodejs.org/), Active LTS and Maintenance LTS versions [Node 18 LTS](https://nodejs.org/en) is recommended. Use the `node --version` command to check your version.
@@ -44,7 +45,19 @@ Following this tutorial will:
4445
Only use this step if you're creating a new application.
4546

4647
To set up the react App, we use the `create-react-app` command line tool. This tool
47-
creates an easy to run TypeScript application powered by React. This command creates a react application using TypeScript.
48+
creates an easy to run TypeScript application powered by React.
49+
50+
To make sure that you have Node installed on your machine run this command in powershell or terminal to see your Node version
51+
```bash
52+
node -v
53+
```
54+
55+
If you do not have `create-react-app` installed on your machine run the following to install it as a global command
56+
57+
```bash
58+
npm install -g create-react-app
59+
```
60+
Once that is installed run this next command to create a new react application to build the sample in.
4861

4962
```bash
5063
# Create an Azure Communication Services App powered by React.

0 commit comments

Comments
 (0)