Code Monkey home page Code Monkey logo

Comments (5)

yortus avatar yortus commented on July 18, 2024

Hi @carn1x. Promise.promisifyAll expects a node-style function signature, i.e. a function accepting a callback as its last argument, where that callback will receive the error/result. Your exports.add function doesn't follow that convention - it has two callbacks. So Promise.promisifyAll will not work as expected there.

from asyncawait.

carn1x avatar carn1x commented on July 18, 2024

Ooh, thanks, totally missed that! Is there a another route I could go or do I really need to refactor to node-style callbacks? Everything seems to be pushing me in that direction, but I was hoping to avoid it!

from asyncawait.

yortus avatar yortus commented on July 18, 2024

To avoid refactoring, you could write your own promisifyAll utility function that works with your convention.

Otherwise, unless there's some special reason to keep the two-callback style, I'd consider refactoring to make your code more interoperable with everything else in node-land. I'm not sure why you are doing it that way to begin with - is it required by some library you are using?

from asyncawait.

carn1x avatar carn1x commented on July 18, 2024

I do plan to re-factor to this convention anyway eventually, however I have a lot of existing code and unit tests based on the current method, so I was hoping to convert my tests and app code separately.

As for why I'm following this method, I think it's just the tutorial I started learning node with. After a while I came to realize that I was going against the grain so I'm now beginning the process of converting. But I'd like to do so incrementally rather than just break everything :). Thanks for the advice!

from asyncawait.

yortus avatar yortus commented on July 18, 2024

No problem, I'll close this issue since there's nothing much else to do here.

from asyncawait.

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.