module.exports = () => {
console.log('Learning NodeJs.');
};
index.mjs
import sampleModule from './sampleModule.mjs';
sampleModule();
Execution Error:
% node --experimental-modules index.mjs
file:///Users/c2ctechtv/Desktop/node-examples/index.mjs:1
import sampleModule from './sampleModule.mjs';
^^^^^^^^^^^^
SyntaxError: The requested module './sampleModule.mjs' does not provide an export named 'default'
at ModuleJob._instantiate (node:internal/modules/esm/module_job:122:21)
at async ModuleJob.run (node:internal/modules/esm/module_job:188:5)
at async DefaultModuleLoader.import (node:internal/modules/esm/loader:228:24)
at async loadESM (node:internal/process/esm_loader:40:7)
at async handleMainPromise (node:internal/modules/run_main:66:12)

Fix:
This error occurs when you try to import a default export from an ES module, but the module does not contain a default export named 'default'.
We make the following changes to our files to fix this error,
SampleModule.mjsexport const message = 'Learning NodeJs.';
index.mjs
import { message } from './sampleModule.mjs';
console.log(message);
Execution:
% node --experimental-modules index.mjs
Learning NodeJs.
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to JavaScript,
- Get Device Screen Width and Height using javaScript
- How to Print from JavaScript HTML using window.print
- Send Extra Data with Ajax Get or Post Request
- How to get UTC (GMT) time using JavaScript
- How to detect Browser and Operating System Name and Version using JavaScript
- Fix: Error: error:0308010C:digital envelope routines::unsupported NodeJs/Vue/React
- How to send email from JavaScript HTML using mailto
- Remove items from JavaScript array
- JavaScript : Get current page address
- Add Animated Scrolling to Html Page Title Script
- [javaScript] Convert text case to lowercase
- JavaScript date in yyyy-MM-dd format
- Power of Print Statements in JavaScript: A Comprehensive Guide
- Submit html form on dropdown menu value selection or change using javascript
- Write javaScript code in Swedish using FikaScript
- Javascript convert text case from uppercase to lowercase
- Excel Fix: SECURITY RISK Microsoft has blocked macros from running because the source of this file is untrusted.
- JavaScript: Count Words in a String
- Meaning of javascript:void(0) explained with example
- JavaScript: Generate Random Numbers between 1 and 3
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- How to get current URL Location using Javascript HTML
- Fix: SyntaxError: The requested module does not provide an export named default
- Fix: Error: Cannot find module /node-examples/init
- JavaScript: Check if variable is a number
More Posts:
- How to Rename a Git Local Branch Using the --move Option - Git
- java.lang.ClassNotFoundException android.support.v7.widget.Toolbar [Fix] - Android
- How to open CMD for current file/folder location in Notepad++ - NotepadPlusPlus
- How to install iTerm2 Mac Terminal Alternative - MacOS
- 10 Must Know CSS Border Styles with Examples - CSS
- The Zsh Shell - Mac Tutorial - MacOS
- Android : Remove ListView Separator/divider programmatically or using xml property - Android
- 10 Beginners Commands for macOS Terminal Usage - MacOS