node.js module

devPomme·2021년 2월 1일
0

node.js 내장 모듈 목록

Node.js v12.18.1 Documentation

node.js 모듈 사용법

  1. 자바스크립트 코드 최상단에 require 구문 작성하기
const fs = require('fs') // 파일 시스템 모듈
const dns = require('dns') // DNS 모듈

fs.readFile로 알아보는 node.js 공식 문서 가이드

fs.readFile(path[, options], callback)

Asynchronously reads the entire contents of a file.
⇒ 비동기적으로 파일의 내용 전체를 읽는다.

  • path 파일 이름(문자열)
  • options 객체 형태 또는 문자열(일 경우에는 인코딩을 넘긴다. utf8)
  • callback : 파일을 읽고 난 후 비동기적으로 실행되는 함수
    • err: <data>
    • data: <string> | <Buffer>
      에러가 발생하지 않을 경우, err는 null이 되고, data에는 문자열이나 Buffer라는 객체가 전달된다.
profile
헌신하고 확장하는 삶

0개의 댓글