Web Development
Node.js
Subjective
Aug 16, 2025
How do you create and export a module in Node.js?
Detailed Explanation
`module.exports = value;` or `exports.property = value;`
Example:
```javascript
module.exports = {func1, func2};
// or
exports.myFunction = () => {};
```
Import with `require("./module")`. ES6: `export default` or `export {}`.
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts