node.js 学习笔记(二)

运行环境

两种,类似 python

  • 命令行交互
$ node
> console.log("Hello World");
  • 文件运行(无需编译)
$ echo 'console.log("Hello World")' > helloworld.js
$ node helloworld.js

Last modified on 2023-11-01

- CATALOG -