simple-kerberos

3.0.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i simple-kerberos

Weekly Downloads

160

Version

3.0.0

License

MIT

Unpacked Size

15.6 kB

Total Files

15

Last publish

Collaborators

  • omrilitov
  • noamokman