# sasl-anonymous

> JavaScript implementation of ANONYMOUS SASL mechanism.

Latest version **0.1.0** (published 2012-12-28) · 0 weekly downloads

## Install

```sh
npm install sasl-anonymous
pnpm add sasl-anonymous
yarn add sasl-anonymous
bun add sasl-anonymous
```

## Health

**Score 18/100 (F)** — status: abandoned.

Positive: has types package; no vulnerabilities.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2012-12-28 |
| First published | 2012-12-28 |
| Weekly downloads | 0 |
| TypeScript types | separate (@types/sasl-anonymous) |
| Module format | CommonJS |
| Node | >= 0.4.0 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Jared Hanson |
| Maintainers | jaredhanson |
| Keywords | sasl, auth, authn, authentication, security |

## Links

- npm: https://www.npmjs.com/package/sasl-anonymous
- Repository: https://github.com/jaredhanson/js-sasl-anonymous
- Issues: http://github.com/jaredhanson/js-sasl-anonymous/issues
- npm.io page: https://npm.io/package/sasl-anonymous

## 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) — 2012-12-28

## README

# SASL : ANONYMOUS

This module is a JavaScript implementation of the ANONYMOUS SASL mechanism,
which plugs into the [SASL](https://github.com/jaredhanson/js-sasl) framework.

## Install

##### npm

    $ npm install sasl-anonymous

##### volo

    $ volo add jaredhanson/js-sasl-anonymous sasl-anonymous

For more information on using volo to manage JavaScript modules, visit [http://volojs.org/](http://volojs.org/).

## Usage

Register the ANONYMOUS mechanism.

```javascript
factory.use(require('sasl-anonymous'));
```

Send an authentication response with necessary credentials.

```
var mech = factory.create(['ANONYMOUS']);
var resp = mech.response({});
```

## Compatibility

##### Browser

This module is [AMD](https://github.com/amdjs/amdjs-api)-compliant, and can be
loaded by module loaders such as [RequireJS](http://requirejs.org/).

This module is optimized for use with [Anchor](https://github.com/anchorjs/anchor).

##### Node

This module is compatible with [Node](http://nodejs.org/).

## Tests

##### Browser

To run tests in a browser, execute the Make target for the desired browser:

    $ make test-chrome
    $ make test-firefox
    $ make test-safari

##### PhantomJS

To run headless tests from a terminal using [PhantomJS](http://phantomjs.org/):

    $ make test-phantomjs

##### Node

To run tests in Node:

    $ make test-node
    
##### Status

[![Travis CI](https://secure.travis-ci.org/jaredhanson/js-sasl-anonymous.png)](http://travis-ci.org/jaredhanson/js-sasl-anonymous)

## Credits

  - [Jared Hanson](http://github.com/jaredhanson)

## License

[The MIT License](http://opensource.org/licenses/MIT)

Copyright (c) 2012 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)>

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