0

Vim、cdargs 等 CLI 应用程序可以打开一个新屏幕,然后允许用户在那里绘制字符。我想尝试用 Node 制作一些类似的工具,并被告知它被称为“替代屏幕”(?)。

我对JS很熟悉。但如果没有解决方案,Python 可能(..)OK。想要一些代码示例:)

根据tMC的anwser找到了一个模块,试图弄清楚...
https://github.com/mscdex/node-ncurses

4

1 回答 1

0

Vim uses the ncurses library to do drawing. You have already found a Node.JS bindings, so you should have no trouble using this library within your application.

I propose you to read the NCURSES tutorial and attempt to do it in Node.JS.

于 2012-09-06T07:28:09.980 回答