-
-
Notifications
You must be signed in to change notification settings - Fork 34.7k
Closed
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.good first issueIssues that are suitable for first-time contributors.Issues that are suitable for first-time contributors.readlineIssues and PRs related to the built-in readline module.Issues and PRs related to the built-in readline module.
Description
Is your feature request related to a problem? Please describe.
const readline = require('readline');
const input = readline.createInterface({
input: process.stdin
});The code above just hangs.
Describe the solution you'd like
const readline = require('readline');
const input = readline.createInterface({
input: process.stdin
});
+input.unref();Describe alternatives you've considered
None yet.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.good first issueIssues that are suitable for first-time contributors.Issues that are suitable for first-time contributors.readlineIssues and PRs related to the built-in readline module.Issues and PRs related to the built-in readline module.