Skip to content

Commit 2187ec5

Browse files
authored
Merge pull request #59 from microsoftgraph/patch-57
Adding missing NPM module
2 parents 46e20f2 + 79f45f8 commit 2187ec5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tutorial/02-create-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Before moving on, install some additional packages that you will use later:
5555
1. Run the following command in your CLI.
5656
5757
```Shell
58-
npm install dotenv@8.2.0 moment@2.29.1 moment-timezone@0.5.31 connect-flash@0.1.1 express-session@1.17.1 isomorphic-fetch@3.0.0
58+
npm install dotenv@8.2.0 moment@2.29.1 moment-timezone@0.5.31 connect-flash@0.1.1 express-session@1.17.1 express-promise-router@4.0.1 isomorphic-fetch@3.0.0
5959
npm install @azure/msal-node@1.0.0-beta.0 @microsoft/microsoft-graph-client@2.1.1 windows-iana@4.2.1 express-validator@6.6.1 uuid@8.3.1
6060
```
6161

tutorial/04-add-aad-auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In this exercise you will extend the application from the previous exercise to s
1919

2020
## Implement sign-in
2121

22-
1. Locate the line `var indexRouter = require('./routes/index');` in **./app.js**. Insert the following code **before** that line.
22+
1. Locate the line `var app = express();` in **./app.js**. Insert the following code **after** that line.
2323

2424
:::code language="javascript" source="../demo/graph-tutorial/app.js" id="MsalInitSnippet":::
2525

0 commit comments

Comments
 (0)