// In order to use imports you must first add "type":"module"
// to your package.json
/* package.json */
{
"type":"module"
}
/* module.js */
function a() {
console.log('It Works!');
}
export { a }
/* index.js */
import { a } from './module.js';
a();
import {func, obj, x} from './export.js'
console.log(func(3), obj, x)
import express from 'express'