![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
brightspace-auth-keys-dynamodb-store
Advanced tools
DynamoDB based public key store implementation for brightspace-auth-keys
DynamoDB based public key store implementation for brightspace-auth-keys.
npm install brightspace-auth-keys brightspace-auth-keys-dynamodb-store --save
const KeyGenerator = require('brightspace-auth-keys').KeyGenerator;
const AWS = require('aws-sdk');
const DynamoDbPublicKeyStore = require('brightspace-auth-keys-dynamodb-store');
const db = new AWS.DynamoDB();
const tableName = 'auth_public_keys';
module.exports = new KeyGenerator({
publicKeyStore: new DynamoDbPublicKeyStore(
db,
tableName
),
// see brightspace-auth-keys for the full set of options
});
For convenience the DynamoDB table can automatically be created in code, doing nothing if the table already exists so that it can be added to initialization code. It will be created with the TTL for the rows set on the ExpiresAt column.
const AWS = require('aws-sdk');
const DynamoDbPublicKeyStore = require('brightspace-auth-keys-dynamodb-store');
const db = new AWS.DynamoDB();
const tableName = 'auth_public_keys';
const readCapacity = 20; /* optional, default 5 */
const writeCapacity = 10; /* optional, default 5 */
DynamoDbPublicKeyStore.createTable(db, tableName, readCapacity, writeCapacity);
FAQs
DynamoDB based public key store implementation for brightspace-auth-keys
The npm package brightspace-auth-keys-dynamodb-store receives a total of 1 weekly downloads. As such, brightspace-auth-keys-dynamodb-store popularity was classified as not popular.
We found that brightspace-auth-keys-dynamodb-store demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.