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
- Have an Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?utm_source=campaign&utm_campaign=vscode-tutorial-app-service-extension&mktingSource=vscode-tutorial-app-service-extension).
33
-
- Install [Node.js and npm](https://nodejs.org). Run the command `node --version` to verify that Node.js is installed.
33
+
- Install [Node.js LTS and npm](https://nodejs.org). Run the command `node --version` to verify that Node.js is installed.
34
34
- Install <ahref="/cli/azure/install-azure-cli"target="_blank">Azure CLI</a>, with which you run commands in any shell to provision and configure Azure resources.
35
35
36
36
::: zone-end
@@ -39,7 +39,7 @@ This quickstart configures an App Service app in the **Free** tier and incurs no
- Have an Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?utm_source=campaign&utm_campaign=vscode-tutorial-app-service-extension&mktingSource=vscode-tutorial-app-service-extension).
42
-
- Install [Node.js and npm](https://nodejs.org). Run the command `node --version` to verify that Node.js is installed.
42
+
- Install [Node.js LTS and npm](https://nodejs.org). Run the command `node --version` to verify that Node.js is installed.
43
43
- Have a FTP client (for example, [FileZilla](https://filezilla-project.org)), to connect to your app.
44
44
45
45
::: zone-end
@@ -53,14 +53,13 @@ In this step, you create a starter Node.js application and make sure it runs on
53
53
1. Create a simple Node.js application using the [Express Generator](https://expressjs.com/starter/generator.html), which is installed by default with Node.js and NPM.
54
54
55
55
```bash
56
-
npx express-generator myExpressApp --view pug
56
+
npx express-generator myExpressApp --view ejs
57
57
```
58
58
59
59
1. Change to the application's directory and install the NPM packages.
60
60
61
61
```bash
62
-
cd myExpressApp
63
-
npm install
62
+
cd myExpressApp && npm install
64
63
```
65
64
66
65
1. Start the development server.
@@ -285,14 +284,14 @@ You can deploy changes to this app by making edits in Visual Studio Code, saving
285
284
286
285
1. From the sample project, open *views/index.pug* and change
0 commit comments