yanni4night
yanni4night

Reputation: 137

What does "this" mean in a nodejs module?

I have a simple codes like the following and execute it as a node module:

console.log(this);
module.exports = {…};

I know that global is the default context (like window in browsers), but what does the this keyword refer to?

Upvotes: 2

Views: 571

Answers (1)

mscdex
mscdex

Reputation: 106696

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.

Upvotes: 6

Related Questions