Skip to content

Commit

Permalink
docs: updates description for router/dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
re-Tick authored Mar 14, 2023
1 parent 561c2bd commit 08878a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ An example is provided in [Sample unit test for Mocking/Stubing](#sample-unit-te
## Supported Routers
### 1. Express
Keploy adds a middleware for capturing requests/responses using require hooks. To integrate, just add the following statement before your require statement of `express`.
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.
```js
// Uncomment following blocks to use require in ES Module
/*
Expand Down Expand Up @@ -148,7 +148,7 @@ app.listen(port, () => {
## Supported Dependencies
### 1. Octokit
To integrate, just add this line before require statement of Octokit in your application.
To integrate, just add this line before every require statement of Octokit in your application.
```js
// Uncomment following blocks to use require in ES Module
/*
Expand All @@ -162,7 +162,7 @@ const { Octokit, App } = require("octokit");
```
### 2. Mongoose
To integrate, just add this line before require statement of mongoose in your application.
To integrate, just add this line before every require statement of mongoose in your application.
```js
// Uncomment following blocks to use require in ES Module
/*
Expand Down

0 comments on commit 08878a1

Please sign in to comment.