Giter VIP home page Giter VIP logo

Comments (6)

weyoss avatar weyoss commented on August 17, 2024

Please provide more information about your environment. Are you using babel or running nodejs with --experimental-modules flag?

It seems that you are having a problem with ES6 modules and commonjs which is used by this packages (module.exports/require). This issue seems not to be related with the package itself.

I believe that mixing ES6 modules with commonjs does not work and it should be avoided.

Have you tried to use module.exports/require instead of import/export?

I mean this way:

const { Consumer } = require('redis-smq');

/**
 * Consumer manager
 */
module.exports = class ConsumerQueueManager extends Consumer {
  constructor() {
    super();
  }

  /**
   * @param {Message} message
   * @param {function} cb
   */
  consume(message, cb) {
    console.debug(message);
    cb();
  }
}

Then in you application kernel import ConsumerQueueManager like:

const ConsumerQueueManager = require('./consumer-path');
...

from redis-smq.

zazoomauro avatar zazoomauro commented on August 17, 2024

I already tried and same problem.
I´m using node v10.3.0
I´m using babel to transpile the project and I´m trying babel-watch to develop locally and I have the same issue.

With babel watch: babel-watch --watch lib --watch config -- ./lib/index.js
With babel transpiler: babel lib -d dist -D

from redis-smq.

weyoss avatar weyoss commented on August 17, 2024

I am convinced that this issue is related to babel and the way it transpiles the code.

Unfortunately I do not provide any assistance with babel issues as they are not related to this project.

I suggest you inspect the transpiled code. Google can be your best friend.

https://www.google.com/search?q=ES6%2FBabel+Class+constructor+cannot+be+invoked+without+%27new%27&oq=ES6%2FBabel+Class+constructor+cannot+be+invoked+without+%27new

from redis-smq.

weyoss avatar weyoss commented on August 17, 2024

This package has been tested on node v10.3.0 and all tests passed successfully.

from redis-smq.

zazoomauro avatar zazoomauro commented on August 17, 2024

@weyoss You were totally right. If somebody is using babel needs to exclude class transform:

That example is for babel7

"presets": [
      ["@babel/preset-env", { "exclude": ["transform-classes"] }]
    ],

from redis-smq.

weyoss avatar weyoss commented on August 17, 2024

Glad you got it fixed!

from redis-smq.

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.