egg-http-auth

1.0.1 • Public • Published

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

Package Sidebar

Install

npm i egg-http-auth

Weekly Downloads

297

Version

1.0.1

License

MIT

Last publish

Collaborators

  • justin_lu