Zoeken…


Syntaxis

  • const readline = vereisen ('readline')
  • readline.close ()
  • readline.pause ()
  • readline.prompt ([preserveCursor])
  • readline.question (query, callback)
  • readline.resume ()
  • readline.setPrompt (prompt)
  • readline.write (data [, key])
  • readline.clearLine (stream, richt)
  • readline.clearScreenDown (stroom)
  • readline.createInterface (opties)
  • readline.cursorTo (stream, x, y)
  • readline.emitKeypressEvents (stream [, interface])
  • readline.moveCursor (stream, dx, dy)

Regel voor regel lezen van bestanden

const fs = require('fs');
const readline = require('readline');

const rl = readline.createInterface({
    input: fs.createReadStream('text.txt')
});

// Each new line emits an event - every time the stream receives \r, \n, or \r\n
rl.on('line', (line) => {
    console.log(line);
});

rl.on('close', () => {
    console.log('Done reading file');
});

Vragen van gebruikersinvoer via CLI

const readline = require('readline');

const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout
});

rl.question('What is your name?', (name) => {
    console.log(`Hello ${name}!`);

    rl.close();
});


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow