在我的fish / cygwin shell上使用Node.js

时间:2018-08-26 08:57:02

标签: javascript node.js shell cygwin fish

我正在学习一门课程,并且正在学习过程中,因此很抱歉,如果其中任何一个简单!

我已经通过cygwin安装程序在cygwin上安装了鱼壳。我还安装了节点(和npm)。

但是,当在外壳中键入'node'时,它只是挂起,而不显示下一行来使用node?

任何帮助使此工作正常进行的人,将不胜感激!

Please see the image of my terminal response here

1 个答案:

答案 0 :(得分:0)

node本身运行会使您进入解释器。

ctrl c是否打印此消息?

(To exit, press ^C again or type .exit)

如果执行此操作怎么办:

node -e 'console.log("foo")'

我得到:

node -e 'console.log("foo")' foo

如果您只是开始输入

node

[按Enter]

输入:

console.log('foo')

[按Enter]