Git Product home page Git Product logo

Comments (5)

domdomegg avatar domdomegg commented on September 22, 2024 16

Another option for a longer-term workaround with ongoing maintenace support committed:

Why: Unfortunately this package (serverless-dynamodb-local) doesn't appear to be maintained, with no new releases to NPM in over 2 years. Many have tried to contact the authors previously, but there seems to be little engagement. Additionally, the person who seemed to be in charge of their open-source work has now left the company.

Solution: You can use serverless-dynamodb, a maintained fork, instead. (Disclaimer: I am a contributor to this fork). It is a drop-in replacement for this package, and is updated to fix this bug. This is a drop-in replacement for serverless-dynamodb-local, so to upgrade simply:

  1. Uninstall serverless-dynamodb-local, e.g. npm uninstall serverless-dynamodb-local
  2. Install serverless-dynamodb, e.g. npm install serverless-dynamodb
  3. Update references in your code, including your serverless config, from serverless-dynamodb-local to serverless-dynamodb (quite possible that you won't have any, as you just refer to it from your serverless config)
  4. (optional) Update your serverless config custom dynamodb key to serverless-dynamodb

Of course, it's all still open-source and MIT licensed. Ownership of this new package sits with a registered charity, that is committed to maintaining the package into the future and is open to contributions from the community.

There's an explanation as to the intentions behind this fork, and how it compares to other forks in the README.

In any case would be open to feedback on the fork - can drop create an issue in that repository or email me (address on profile).

from serverless-dynamodb-local.

yanaSelin avatar yanaSelin commented on September 22, 2024 4

As temp solution for me helped to inherit serverless-dynamodb-local plugin with local one and override dynamodbOptions method as per @henriklippke PR, and use this plugin in my project

class ServerlessDynamodbLocalFix extends ServerlessDynamodbLocal {
  dynamodbOptions(options) {
    let dynamoOptions = {};

    if (options && options.online) {
      ...
    } else {
      dynamoOptions = {
        endpoint: `http://${this.host}:${this.port}`,
        region: 'localhost',
        accessKeyId: 'MOCKACCESSKEYID',
        secretAccessKey: 'MOCKSECRETACCESSKEY',
        convertEmptyValues:
          options && options.convertEmptyValues ? options.convertEmptyValues : false,
      };
    }

    return {
      raw: new AWS.DynamoDB(dynamoOptions),
      doc: new AWS.DynamoDB.DocumentClient(dynamoOptions),
    };
  }
}
module.exports = ServerlessDynamodbLocalFix;

from serverless-dynamodb-local.

whitneylarow avatar whitneylarow commented on September 22, 2024 1

Thanks for the PR! This issue is blocking our pipelines as well. Any ideas for a workaround in the meantime?

from serverless-dynamodb-local.

rahulp959 avatar rahulp959 commented on September 22, 2024 1

@henriklippke -- I've published a fork to npm with your changes in.

I haven't yet gotten a chance to try it (I'll do so later this morning in some of my other projects)

Let me know if there's any issues.

https://www.npmjs.com/package/@rahulp959/serverless-dynamodb-local

from serverless-dynamodb-local.

oshea00 avatar oshea00 commented on September 22, 2024 1

Wrapping a jar file in a node module used by a plugin. What could possibly go wrong?

from serverless-dynamodb-local.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.