# krbclient

> Node.js native addon for kerberos authentication

Latest version **0.1.0** (published 2015-03-05) · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install krbclient
pnpm add krbclient
yarn add krbclient
bun add krbclient
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2015-03-05 |
| First published | 2015-03-05 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.12.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| Author | Jacob Ludriks |
| Maintainers | jacobludriks |
| Keywords | kerberos, krb5, auth, active directory, windows, ad, authentication |

## Links

- npm: https://www.npmjs.com/package/krbclient
- Repository: https://github.com/jacobludriks/node-krbclient
- Homepage: http://github.com/jacobludriks/node-krbclient
- Issues: https://github.com/jacobludriks/node-krbclient/issues
- npm.io page: https://npm.io/package/krbclient

## Dependencies (1)

- [node-gyp](https://npm.io/package/node-gyp.md) 1.0.2

## Alternatives

- [@clerk/clerk-expo](https://npm.io/package/@clerk/clerk-expo.md) — 133.6K weekly downloads
- [@pothos/plugin-authz](https://npm.io/package/@pothos/plugin-authz.md) — 12.4K weekly downloads
- [@bounded-sh/client](https://npm.io/package/@bounded-sh/client.md) — 3.2K weekly downloads
- [@luigi-project/plugin-auth-oauth2](https://npm.io/package/@luigi-project/plugin-auth-oauth2.md) — 2.3K weekly downloads
- [@nocobase/plugin-verification](https://npm.io/package/@nocobase/plugin-verification.md) — 2.0K weekly downloads

## Recent versions

- 0.1.0 (latest) — 2015-03-05

## README

#node-krbclient

Currently a work in progress.

Be sure to run `set MITKRB5=C:\Program Files\MIT\Kerberos`

###How to use

```
var krb = require('krbclient');

var test = krb.getTicket('HTTP@someserver.domain.com');

function pollForResult() {
	if (test) { console.log(test) }
	else {
		setTimeout(function() {
			pollForResult();
		}, 1000);
	}
}

pollForResult();
```

This will return a base64 string you can use for `Negotiate` Kerberos authentication.

---
_Source: https://npm.io/package/krbclient · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
