Skip to content

Commit

Permalink
chore: fix http-module.md grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
brandlej authored Jan 2, 2024
1 parent 6ad915c commit 2711ef6
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 2711ef6

Please sign in to comment.