flatiron / prompt

a beautiful command-line prompt for node.js

Home Page:http://github.com/flatiron/prompt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issue when running

Peyoway opened this issue · comments

commented

Everything works! Except for there is this huge thing!

image

Is there a way to disable this?

Can you add some repro code?

Occurs for me too. I'm running via the Replit.com environment, but that shouldn't make a difference.

 var prompt = require('prompt');

  //
  // Start the prompt
  //
  prompt.start();

  //
  // Get two properties from the user: username and email
  //
  prompt.get(['username', 'email'], function (err, result) {
    //
    // Log the results.
    //
    console.log('Command-line input received:');
    console.log('  username: ' + result.username);
    console.log('  email: ' + result.email);
  });