NodeJS简记

C:\Users\Administrator>node
> .help
.break    Sometimes you get stuck, this gets you out
.clear    Alias for .break
.editor   Enter editor mode
.exit     Exit the repl
.help     Print this help message
.load     Load JS from a file into the REPL session
.save     Save all evaluated commands in this REPL session to a file

神奇的NodeJS,啥命令都是带个点开始。

Chrome's V8 JavaScript engine:https://developers.google.com/v8/

NodeJS,基于Google V8:https://nodejs.org/en/

npm, npm is the package manager for JavaScript and the world’s largest software registry:https://www.npmjs.com/

Grunt,JavaScript 世界的“自动化”构建工具,基于npm,并且有插件:http://www.gruntjs.net/

Bower,A package manager for the web:https://bower.io/

猜你喜欢

转载自www.cnblogs.com/rgqancy/p/9077109.html