What does “this” mean in a nodejs module?

this (in the context of a module) is the same as exports in node.js. However you should generally use exports/module.exports instead, so that it’s explicitly clear what you’re modifying.

Leave a Comment