본문 바로가기
자바스크립트

export import

by AYAYz 2020. 8. 17.

{ }는 그냥 불러오기. export할 때의 이름 그대로 가져와 써야함

export {a};  //내보낼 때도 {}

import { a as b } from './Sub'

 

default는 중괄호 없이 쓴다.

export default a;

import Value from './Sub'

 

require에서 상대경로나 절대경로를 표시하면 (./같은거) 그 위치에서

안쓰면 코어모듈이나 node_modules에서 찾음 

 

module.exports = ()=>{ console.log("a") }

let a = require("./sub");

a();

댓글