“module.exports in JS” Kod odpowiedzi

Jaka jest składnia do eksportowania funkcji z modułu w Node.js

function foo() {}
function bar() {}

// To export above functions:
module.exports = foo;
module.exports = bar;

// And in the file you want to use these functions,
// import them like this:
const foo = require('./module/path');
const bar = require('./module/path');

QuietHumility

Jak wyeksportować klasę w węźle JS

class TestClass {
  
}

module.exports.TestClass = TestClass;
Embarrassed Earthworm

module.exports in JS

module.exports = {
    method: function() {},
    otherMethod: function() {},
};


const myModule = require('./myModule.js');
const method = myModule.method;
const otherMethod = myModule.otherMethod;
// OR:
const {method, otherMethod} = require('./myModule.js');
anas ben rais

Odpowiedzi podobne do “module.exports in JS”

Pytania podobne do “module.exports in JS”

Więcej pokrewnych odpowiedzi na “module.exports in JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu