Answers for "import javascript"

12

alias import javascript

import {default as alias} from 'my-module';
Posted by: Guest on September-16-2020
9

js import and export

// helloworld.js

export function helloWorld() {
	return 'Hello World!';
}

// main.js

import helloWorld from './helloworld.js';

console.log(helloWorld());
Posted by: Guest on September-02-2020
1

js es6 dynamic import default

// something.js

export const hi = (name) => console.log(`Hi, ${name}!`)
export const bye = (name) => console.log(`Bye, ${name}!`)
export default () => console.log('Hello World!')

We can use import() syntax to easily and cleanly load it conditionally:
// other-file.js

if (somethingIsTrue) {
  import('./something.js').then((module) => {
    // Use the module the way you want, as:
    module.hi('Erick') // Named export
    module.bye('Erick') // Named export
    module.default() // Default export
  })
}
Posted by: Guest on January-11-2021
1

javascript import

// module-name = module to import
// defaultExport - Namespace to refer to the default export from the module.
import defaultExport from "module-name";
import * as name from "module-name";
// exportN - Name of export to be imported
import { export1 } from "module-name";
// aliasN - Reasign export to new namespace
import { export1 as alias1 } from "module-name";
import { export1 , export2 } from "module-name";
import { export1 , export2 as alias2 , [...] } from "module-name";
import defaultExport, { export1 [ , [...] ] } from "module-name";
import defaultExport, * as name from "module-name";
import "module-name";
var promise = import("module-name");
Posted by: Guest on September-08-2021
0

import all from javascript

import * as module from "./module.js";
Posted by: Guest on October-03-2020
2

javascript import class

//import it
import Example from './file2';
//Create an Instance
var myInstance = new Example()
myInstance.test()
Posted by: Guest on November-17-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language