node-ncurses icon indicating copy to clipboard operation
node-ncurses copied to clipboard

An ncurses binding for node.js

Results 16 node-ncurses issues
Sort by recently updated
recently updated
newest added

When I run npm install I get this result CXX(target) Release/obj.target/libncurses/deps/libncurses/c++/cursesp.o In file included from ../deps/libncurses/c++/cursesp.cc:35:0: ../deps/libncurses/c++/cursesp.h: In member function ‘T* NCursesUserPanel::UserData() const’: ../deps/libncurses/c++/cursesp.h:256:43: error: no matching function for call...

You may consider archiving the repository https://help.github.com/articles/archiving-a-github-repository/

I am trying to write an ncurses tcp chat client using this library however I have been unable to find a way to implement the backspace function in the form...

The library will fail when calling methods of a closed ncurses window. For example for window (w): ``` console.log("Calling Refresh - OK"); w.refresh(); console.log("Closing Window - OK"); w.close(); console.log("Calling Refresh...

When I run any of the examples and exit one of them using ctrl-c, the terminal is all messed up. Extra padding in outputing, some cases my typing is not...

My code is simply console.logging isKey out when I type. isKey is always false. I am on a mac, using terminal.app.

from the example directory: node widget.js FileViewer resize the terminal window (fileviewer does not resize) try to scroll, and it coredumps.

README says bell(), but the code says beep().

I have this code: ``` 36 win.on('inputChar', (onKey)) ``` and then for onKey: ``` 6 function onKey (_, charCode, __) { 7 if (charCode == nc.keys.ENTER) { 8 if (cX...

Here's what I see when I run the example in the wiki: ┌───────────────────win1Title────────────────────┐ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ ┌─────────────────── Only...