✅ 1. Core Node.js Concepts - Modules Flashcards
CommonJS vs ES6 modules, `require()` vs `import`
What is the syntax for importing named exports in ES6?
import { myFunction } from ‘./myModule.mjs’;
What is the default module system in Node.js?
CommonJS (require() and module.exports) is the default module system in Node.js.
What is the difference between CommonJS and ES6 modules?
- CommonJS: Uses require() and module.exports.
- ES6: Uses import and export.
What file extension is required for ES6 modules in Node.js?
.mjs or add “type”: “module” in package.json.
How do you export multiple functions in CommonJS?
module.exports = {
add,
subtract
};
How do you export multiple functions in ES6 modules?
export { add, subtract };
What is the output of this CommonJS code?
const math = require(‘./math’);
console.log(math.add(2, 3));
The output is the result of math.add() if the math module exports an add function.
What is the output of this ES6 module code?
import { add } from ‘./math.mjs’;
console.log(add(2, 3));
The output is 5 if the add function is properly exported.
What is the difference between require() and import in terms of execution?
- require() is synchronous.
- import is asynchronous.
How do you import a default export in ES6 modules?
import myModule from ‘./myModule.mjs’;
How do you import a default export in CommonJS?
const myModule = require(‘./myModule’);
What is the difference between module.exports and exports in CommonJS?
- module.exports: The actual exported object.
- exports: A shortcut reference to module.exports.
What is tree-shaking in ES6 modules?
It is the process of removing unused exports during bundling to optimize the code.
What is the output of this code?
console.log(module);
It displays the current module object with properties like exports, id, and filename.
How do you dynamically import a module in ES6?
const module = await import(‘./math.mjs’);
What is the benefit of using ES6 modules over CommonJS?
- Asynchronous loading.
- Static analysis for better optimization.
- Tree-shaking support.
What is the output of this ES6 code?
export default function greet() {
console.log(‘Hello’);
}
It exports the greet function as the default export.
What happens if you reassign exports in CommonJS?
It breaks the module export. Use module.exports instead:
exports = { name: ‘test’ }; // Invalid
module.exports = { name: ‘test’ }; // Correct
How do you use import syntax with CommonJS modules?
You cannot directly use import with CommonJS unless you add “type”: “module” in package.json.
What is the output of this code?
module.exports = () => console.log(‘Hello’);
Exports an anonymous function that logs Hello.
How do you handle circular dependencies in Node.js modules?
- Refactor code to avoid circular references.
- Use lazy loading or import().
What is the output of this code using CommonJS?
const myModule = require(‘./myModule’);
console.log(myModule);
Logs the exported object or function from myModule.
What is the output of this code using ES6?
import * as myModule from ‘./myModule.mjs’;
console.log(myModule);
Logs an object with all named exports from myModule.
How do you mix import and require() in the same file?
You cannot mix them. Use either CommonJS or ES6 module syntax.
What is the benefit of using import() over require()?
import() is asynchronous and supports dynamic loading.
How do you mark a project as ES6 modules?
Add the following in package.json: json
“type”: “module”
What is the output of this code?
const myModule = require(‘./myModule’);
console.log(typeof myModule);
The output is the data type of the exported value.
How do you handle backward compatibility between CommonJS and ES6 modules?
- Use Babel or TypeScript for compatibility.
- Use .mjs for ES6 and .cjs for CommonJS files.
What is the output of this code?
import { add } from ‘./math.mjs’;
console.log(typeof add);
Logs the data type of the add export.
How do you import everything from a module in ES6?
import * as utils from ‘./utils.mjs’;