모듈을 파괴하는 두 가지 흔한 방법은 노드다.js
const {stdin: input, stdout: output} = require('process');
// Example exploiting Readline
const rl_cjs = readline.createInterface({
input: process.stdin,
output: process.stdout
});
ESM의 해체import { stdin as input, stdout as output } from 'process';
// Example exploiting Readline
const rl_esm = readline.createInterface({ input, output });
만약 어떤 타자 오류와(또는) 건의를 할 수 있는 것을 발견하면 아래의 평론 부분에 남겨 주십시오.감사합니다. 다음에 또 만나요!
Reference
이 문제에 관하여(모듈을 파괴하는 두 가지 흔한 방법은 노드다.js), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/projektorius96/two-common-ways-to-destruct-modules-is-nodejs-4kmb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)