3.0.0 • Published 4 years ago

simple-kerberos v3.0.0

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

simple-kerberos Build Status Coverage Status

Kerberos for web servers made simple

Installation

$ [sudo] npm install simple-kerberos --save

Usage

The module takes a token and uses the kerberos module to find the matching principle

Example

import simpleKerberos from 'simple-kerberos';

simpleKerberos('my-token')
  .then(username => {
    console.log(username); // outputs the username matching the given token
  });

Related

FAQ

  • I am getting Simple Kerberos failed to load the "kerberos" module This is the expected bahivour when the library was not able to find the kerberos module. Common causes:
    • missing kerberos package as dependencies.
    • kerberos module was not built properly and could not find the complied code

License

MIT

3.0.0

4 years ago

2.0.0

5 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

8 years ago

1.0.0

8 years ago

0.1.0

8 years ago