1.0.1 • Published 7 years ago

egg-http-auth v1.0.1

Weekly downloads
18
License
MIT
Repository
github
Last release
7 years ago

egg-http-auth

NPM version build status Test coverage David deps Known Vulnerabilities npm download

egg plugin for HTTP basic and digest access authentication.

Install

$ npm i egg-http-auth --save

Usage

// {app_root}/config/plugin.js
exports.httpAuth = {
  enable: true,
  package: 'egg-http-auth',
  // which routes you want to using this middleware
  match: '',
  // which routes you want to ignore this middleware
  // ignore: ''
  // match: (ctx) {
  // }
};

Configuration

// {app_root}/config/config.default.js
exports.httpAuth = {
  username: 'username',
  password: 'password',
};

see config/config.default.js for more detail.

Example

// for old version eggjs which does support match options
// {app_root}/config/config.default.js
exports.httpAuth = {
  username: 'username',
  password: 'password',
  match: /^\/api\/v1\/backdoor/
};

Questions & Suggestions

Please open an issue here.

License

MIT