javascript 표준 입력(readline)
javascript 표준 입력(readline)
- readline 모듈은 한 번에 한 줄씩 Readable 스트림(예 : process.stdin)에서 데이터를 읽기위한 인터페이스를 제공합니다.
- 비동기 처리를 하기 때문에 콜백함수를 활용한다.
- https://nodejs.org/api/readline.html#readline_readline
const readline = require('readline');
const rl = readline.createInterface({ //readline.Interface 클래스 생성
input: process.stdin,//표준스트림 input(standard_input), 입력
output: process.stdout// 표준스트림 output(standart_output), 출력
});
rl.question('What do you think of Node.js? ', (answer) => {
// TODO: Log the answer in a database
console.log(`Thank you for your valuable feedback: ${answer}`);
rl.close();// readline.Interface의 인스턴스의 input output 제어권 포기
});
/**
* 이 코드가 호출되면
* 인터페이스가 입력 스트림에서 데이터가 수신되기를 기다리기 때문에
* readline.Interface가 닫힐 때까지 Node.js 애플리케이션이 종료되지 않습니다.
* r1.close()로 닫는다.
*/
Author And Source
이 문제에 관하여(javascript 표준 입력(readline)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@unow30/javascript-표준-입력readline저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)