dynamodb-localhost
dynamodb-localhost copied to clipboard
Dynamodb localhost runner for development and testing
# What is this? DynamoDB Local Web Shell has been deprecated and the message at startup is inappropriate and seems to need improvement. So I deleted the unwanted visit messages....
The latest link for the AWS dynamodb_local jar returns a redirect to a `https` URL. This causes the installation script to fail because it `require("http")`. Using `require("https")` to solve this...
This change was made to avoid the error when install process is executed: Error: Error getting DynamoDb local latest tar.gz location: 301 at ClientRequest. (.../node_modules/serverless-dynamodb-local/node_modules/dynamodb-localhost/dynamodb/installer.js:14:26) at Object.onceWrapper (events.js:315:30) at emitOne...
Current implementation does not cater for redirect, causing error when downloading dynamodb_local ``` /Users/anggra/Documents/Work/web/testing/node_modules/dynamodb-localhost/dynamodb/installer.js:23 throw new Error('Error getting DynamoDb local latest tar.gz location ' + response.headers.location + ': ' +...
Behind a firewall, `http` could be disabled in some usecases... it would be nice to be able to support downloading via https as well
DynamoDB Local Web Shell seems to be deprecated. > DynamoDB Local Web Shell was deprecated with version 1.16.X and is not available any longer from 1.17.X to latest. See here:...
The recent critical fixes to the download url have not been published to npm. Please bump the version to make that happen.
# What - Adds `installAsync` as a non-breaking alternative to `install`` - Removes need for callback - Updates README to reflect need for install before start # Why Using the...
I'm using dynamodb-localhost in vitest, it uses worker threads and as suggested https://github.com/vitest-dev/vitest/issues/1544 a check is required when spawning Otherwise you get an error similar to ```js TypeError [ERR_INVALID_ARG_VALUE]: The...
- Upgrade `package-lock.json` to v2 - Update chai, mocha, tar, run `npm audit fix` to get to zero vulnerabilities - Moved chai and mocha to `devDependencies` - Also increased the...