Skip to content
#

mit

Here are 695 public repositories matching this topic...

szmarczak
szmarczak commented Nov 17, 2020

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(
SwifterSwift
foolip
foolip commented Nov 20, 2018

System information

  • node version: v10.13.0
  • npm or yarn version: 6.4.1
  • OS/version/architecture: gLinux 64-bit (Google-internal, like Debian Testing)
  • Applicable nodegit version: v0.23.0 built from source

https://www.nodegit.org/api/tree/ has an example of how to use tree.walk(), but it doesn't mention a critical detail, which is mentioned in an example:
https://github.com

panel
Hadimhz
Hadimhz commented Oct 30, 2020

Is your feature request related to a problem? Please describe.
Getting a server by its visible ID requires many requests.
if I want to get a specific server using the ID visible to the user (example: efcecec0) I will have to list all servers and then filter the list. but that requires a lot of requests depending on the number of pages you have.

Describe the solution you'd like
can yo

Improve this page

Add a description, image, and links to the mit topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the mit topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.