Skip to content

Instantly share code, notes, and snippets.

@mizdra
Last active May 27, 2024 03:24
Show Gist options
  • Save mizdra/85ca668ab28f773cef9cb150616a6755 to your computer and use it in GitHub Desktop.
Save mizdra/85ca668ab28f773cef9cb150616a6755 to your computer and use it in GitHub Desktop.
export * from './2.js';
export * from './3.js';
export * from './4.js';
export const a = '1_a';
export const b = '1_b';
export const b = '2_b'; // This conflicts with 1.js and is hidden
export const c = '2_c';
export const d = '3_d'; // This conflicts with 4.js and is hidden
export const d = '4_d'; // This conflicts with 3.js and is hidden

How to run

for Node.js

node --experimental-default-type=module main.js

for Browser

npx serve .
open http://localhost:3000

Result

Node.js

{"a":"1_a","b":"1_b","c":"2_c"}

Chrome

{"a":"1_a","b":"1_b","c":"2_c"}

Safari

{"a":"1_a","b":"1_b","c":"2_c"}

Firefox

{"a":"1_a","b":"1_b","c":"2_c"}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="module" src="./main.js"></script>
<title>Document</title>
</head>
<body>
</body>
</html>
import * as exports from './1.js';
console.log(JSON.stringify(exports));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment