File tree Expand file tree Collapse file tree 1 file changed +16
-17
lines changed
articles/cognitive-services/Bing-Web-Search Expand file tree Collapse file tree 1 file changed +16
-17
lines changed Original file line number Diff line number Diff line change @@ -28,23 +28,22 @@ Here are a few things that you'll need before running this quickstart:
28
28
29
29
## Set up your development environment
30
30
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
+ ```
48
47
49
48
## Create a project and declare required modules
50
49
You can’t perform that action at this time.
0 commit comments