From 665db731099314ef6128188a5657bae0a142640d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20B=C3=B6ller?= Date: Sat, 18 Jun 2022 11:20:41 +0200 Subject: [PATCH] Add resource section (#4767) The description mentions libraries and resources to be referenced on this page. I added a section for resources referencing blog posts with recipes to achieve different outcomes with Axios. --- ECOSYSTEM.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/ECOSYSTEM.md b/ECOSYSTEM.md index 9e55bc21db..108df44554 100644 --- a/ECOSYSTEM.md +++ b/ECOSYSTEM.md @@ -42,3 +42,19 @@ This is a list of axios related libraries and resources. If you have a suggestio * [axios-test-instance](https://github.com/remcohaszing/axios-test-instance) — Test NodeJS backends using Axios * [moxios](https://github.com/axios/moxios) - Mock axios requests for testing * [mocha-axios](https://github.com/jdrydn/mocha-axios) - Streamlined integration testing with Mocha & Axios + +## Resources + +### General + +* [Connection pooling with agentkeepalive](https://traveling-coderman.net/code/node-architecture/connection-pooling/) +* [Error handling in Express.js](https://traveling-coderman.net/code/node-architecture/axios-error-handling/) +* [Request authentication with JWT](https://traveling-coderman.net/code/node-architecture/http-auth/) + +### Logging and debugging + +* [Pino request logging](https://traveling-coderman.net/code/node-architecture/logging-http-requests/) + +### Unit testing + +* [Organizing and testing HTTP requests](https://traveling-coderman.net/code/node-architecture/sending-http-requests/)