A DynamoDB-backed tracker for the data-migration library, version 1.5.14. It integrates with data-migration to record which migration scripts have been executed in a DynamoDB table. Release cadence is irregular, primarily maintenance updates. Differentiator: leverages AWS DynamoDB for scalability and existing AWS credentials, supporting custom partition/sort keys and prefixes.
npm install dm-tracker-dynamodbNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to import and instantiate DynamoDbTracker with minimum required config, then pass it to DataMigration.
Ensure all required parameters are provided in the constructor config object.
Use destructuring: const { DynamoDbTracker } = require('dm-tracker-dynamodb')Use accessKeyId and secretAccessKey or rely on default AWS credential chain instead.
Always specify region explicitly in config.
Use const { DynamoDbTracker } = require('dm-tracker-dynamodb');Include TableName in the config object: new DynamoDbTracker({ TableName: 'my-table', ... })Provide accessKeyId and secretAccessKey in config, or configure AWS credentials via environment variables.