1
resposta

Codigo fonte

Aonde está o codigo fonte disponivel para download?

1 resposta

Alisson,

Também não achei, mas cria o seu próprio usando o https://docs.microsoft.com/en-us/azure/app-service/quickstart-nodejs?tabs=linux&pivots=development-environment-vscode

Obs: tem que dar um sudo install npm antes, se você não tiver instalado. sudo apt install nodejs sudo apt install npm

Abs, Neivam

Create your Node.js application In this step, you create a basic Node.js application and ensure it runs on your computer.

Tip

If you have already completed the Node.js tutorial, you can skip ahead to Deploy to Azure.

Create a Node.js application using the Express Generator, which is installed by default with Node.js and NPM.

Bash

Copy npx express-generator myExpressApp --view ejs Change to the application's directory and install the NPM packages.

Bash

Copy cd myExpressApp && npm install Start the development server with debug information.

Bash

Copy DEBUG=myexpressapp:* npm start In a browser, navigate to http://localhost:3000. You should see something like this:

Running Express Application