You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/tutorials/calling-widget/calling-widget-tutorial.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ Following this tutorial will:
31
31
- Teach you how to build a widget for starting calls on your webapp using the UI library.
32
32
33
33
## 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.
34
35
35
36
-[Visual Studio Code](https://code.visualstudio.com/) on one of the [supported platforms](https://code.visualstudio.com/docs/supporting/requirements#_platforms).
36
37
-[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:
44
45
Only use this step if you're creating a new application.
45
46
46
47
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.
48
61
49
62
```bash
50
63
# Create an Azure Communication Services App powered by React.
0 commit comments