Skip to content

Commit 1b95571

Browse files
committed
Trying to address issues with code samples in node.js sdk document.
1 parent 1f98a60 commit 1b95571

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

articles/cognitive-services/Bing-Web-Search/web-search-sdk-node-quickstart.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,22 @@ Here are a few things that you'll need before running this quickstart:
2828

2929
## Set up your development environment
3030

31-
Let's start by setting up the development environment for our Node.js project.
32-
33-
1. Create a new directory for your project:
34-
```console
35-
mkdir YOUR_PROJECT
36-
```
37-
2. Create a new package file for this project.
38-
```console
39-
npm init
40-
```
41-
3. Now that the `package.json` file has been created, let's install some azure modules and add them to `package.json`:
42-
```console
43-
npm install --save azure-cognitiveservices-websearch
44-
npm install --save ms-rest-azure
45-
```
46-
47-
Now you're ready to get started.
31+
Let's start by setting up the development environment for our Node.js project.
32+
33+
1. Create a new directory for your project:
34+
```console
35+
mkdir YOUR_PROJECT
36+
```
37+
2. Create a new package file:
38+
```console
39+
cd YOUR_PROJECT
40+
npm init
41+
```
42+
3. Now, let's install some azure modules and add them to the `package.json`:
43+
```console
44+
npm install --save azure-cognitiveservices-websearch
45+
npm install --save ms-rest-azure
46+
```
4847

4948
## Create a project and declare required modules
5049

0 commit comments

Comments
 (0)