[Node.js] 6 일차 - Node.js 기능 (2)

Pongchi·2022년 5월 23일
0

Node.js

목록 보기
6/11
post-custom-banner

노드 내장 객체

global

  • 브라우저의 window와 같은 전역 객체이다.
  • 이전 글에서 require 함수도 global.require에서 global이 생략된 것
  • 노드 콘솔에 로그를 기록하는 console 객체도 원래는 global.console임.
  • global 객체의 내부를 보려면 REPL을 이용해야함.

Note

노드에는 DOM이나 BOM이 없어 window와 document 객체를 사용할 수 없음.

활용

[ globalA.js ]

module.exports = () => global.message

[ globalB.js ]

const A = require('./globalA');

global.message = 'Hello, World';
console.log(A());


profile
- I'm going to be a ???
post-custom-banner

0개의 댓글