Skip to content

Commit

Permalink
Merge pull request #2932 from brandlej/patch-2
Browse files Browse the repository at this point in the history
chore: fix http-module.md grammar
  • Loading branch information
kamilmysliwiec authored Jan 2, 2024
2 parents 6ad915c + 2711ef6 commit d9dc298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/techniques/http-module.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### HTTP module

[Axios](https://github.com/axios/axios) is richly featured HTTP client package that is widely used. Nest wraps Axios and exposes it via the built-in `HttpModule`. The `HttpModule` exports the `HttpService` class, which exposes Axios-based methods to perform HTTP requests. The library also transforms the resulting HTTP responses into `Observables`.
[Axios](https://github.com/axios/axios) is a richly featured HTTP client package that is widely used. Nest wraps Axios and exposes it via the built-in `HttpModule`. The `HttpModule` exports the `HttpService` class, which exposes Axios-based methods to perform HTTP requests. The library also transforms the resulting HTTP responses into `Observables`.

> info **Hint** You can also use any general purpose Node.js HTTP client library directly, including [got](https://github.com/sindresorhus/got) or [undici](https://github.com/nodejs/undici).
Expand Down

0 comments on commit d9dc298

Please sign in to comment.