# dynamodb-sqrl-store

> Data store for SQRL using DynamoDb

Latest version **1.0.0** (published 2020-03-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install dynamodb-sqrl-store
pnpm add dynamodb-sqrl-store
yarn add dynamodb-sqrl-store
bun add dynamodb-sqrl-store
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2020-03-15 |
| First published | 2020-03-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 8 |
| Dependencies | 2 |
| Unpacked size | 9.9 KB |
| Known vulnerabilities | 0 (+5 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Jason Clark |
| Maintainers | jjasonclark |
| Keywords | authentication, crypto, ed25519, hmac, sqrl |

## Links

- npm: https://www.npmjs.com/package/dynamodb-sqrl-store
- Repository: https://github.com/jjasonclark/sqrl-min-auth/packages/dynamodb-sqrl-store
- npm.io page: https://npm.io/package/dynamodb-sqrl-store

## Dependencies (2)

- [nanoid](https://npm.io/package/nanoid.md) ^2.1.11
- [aws-sdk](https://npm.io/package/aws-sdk.md) ^2.639.0

## 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

- 1.0.0 (latest) — 2020-03-15

## README

# DynamoDb-SQRL-Store

[![License][license-badge]][license-url]

A [SQRL][sqrl] store for DynamoDb

## Installation

```bash
$ npm install dynamodb-sqrl-store
```

## Usage

```javascript
const DynamoDbSqrlStore = require('dynamodb-sqrl-store');
const store = new DynamoDbSqrlStore(tableName, awsConfig);
```

## Resources
Need a table to store the users, sqrl identities, and nuts.

```yaml
DynamoDbTable:
  Type: AWS::DynamoDB::Table
  DeletionPolicy: Retain
  Properties:
    TableName: sqrl
    AttributeDefinitions:
      - AttributeName: pk
        AttributeType: S
    KeySchema:
      - AttributeName: pk
        KeyType: HASH
    BillingMode: PAY_PER_REQUEST
```

## License

[MIT](https://github.com/jjasonclark/dynamodb-sqrl-store/LICENSE)

[license-badge]: https://img.shields.io/github/license/jjasonclark/dynamodb-sqrl-store.svg
[license-url]: https://opensource.org/licenses/MIT
[sqrl]: https://www.grc.com/sqrl/sqrl.htm

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