Skip to content

Commit 08878a1

Browse files
authored
docs: updates description for router/dependencies
1 parent 561c2bd commit 08878a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ An example is provided in [Sample unit test for Mocking/Stubing](#sample-unit-te
115115
116116
## Supported Routers
117117
### 1. Express
118-
Keploy adds a middleware for capturing requests/responses using require hooks. To integrate, just add the following statement before your require statement of `express`.
118+
Keploy adds a middleware for capturing requests/responses using require hooks. To integrate, just add the following statement before every require statement of `express` in your app.
119119
```js
120120
// Uncomment following blocks to use require in ES Module
121121
/*
@@ -148,7 +148,7 @@ app.listen(port, () => {
148148
149149
## Supported Dependencies
150150
### 1. Octokit
151-
To integrate, just add this line before require statement of Octokit in your application.
151+
To integrate, just add this line before every require statement of Octokit in your application.
152152
```js
153153
// Uncomment following blocks to use require in ES Module
154154
/*
@@ -162,7 +162,7 @@ const { Octokit, App } = require("octokit");
162162
```
163163
164164
### 2. Mongoose
165-
To integrate, just add this line before require statement of mongoose in your application.
165+
To integrate, just add this line before every require statement of mongoose in your application.
166166
```js
167167
// Uncomment following blocks to use require in ES Module
168168
/*

0 commit comments

Comments
 (0)