Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 572 Bytes

create-node-app.md

File metadata and controls

18 lines (13 loc) · 572 Bytes
ms.topic ms.date ms.custom
include
08/05/2021
devx-track-js

Create and run an Express.js app by cloning an Azure sample repository.

  1. At a terminal command prompt, go to the directory location where you want to create the app folder.

  2. Use the following bash command with git to clone the repository, change into the repository folder named myexpressapp, then install the npm dependencies.

    git clone https://github.com/Azure-Samples/js-e2e-express-server.git myexpressapp && \
        cd myexpressapp && \
        npm install