nest-digest-auth
v1.0.3
Published
Digest Authentication wrapper using Axios, compatible with NestJS
Maintainers
Readme
nest-digest-auth
A lightweight Digest Authentication wrapper using Axios, compatible with NestJS.
✨ Features
- 🔐 MD5 Digest authentication
- 🧠 Fully typed
- ⚡ Axios-based HTTP client
- 🧩 Easy integration with NestJS
📦 Installation
npm install nest-digest-auth🔧Usage
digestRequest(
{
method: 'GET',
url: 'http://your-api.com/protected',
},
data,
'username',
'password',
);