我目前正在通过" Learnyounode"学习Node。 但是,在我的计算机上测试一些javascript文件的时候,我试着运行一个简单的" Hello World"
console.log("Hello World");
它给我一个错误返回
Error: 'console' is undefined.
这是我的命令提示符问题还是系统错误?我需要为Javascript重新安装一段时间吗?我的代码在我的浏览器控制台中工作正常,但在我的本地命令行中没有。
任何帮助都会感激,提前致谢!
答案 0 :(得分:0)
我知道从NodeJS开始可能很困难......尝试下面的内容:
1. Create a .js file... call it test.js
2. In the file write command:
console.log('hello world from node');
3. save the file.
4. Navigate to that directory and type:
node test.js
Now you will see the output.
祝你好运!