NodeJS开发环境

**

安装Git

**
安装Git for windows
https://gitforwindows.org/

安装TortoiseGit
https://tortoisegit.org/

Git for windows安装注意事项
统一使用Linux文件操作命令图片:
《NodeJS开发环境》
启用软连接支持图片:
《NodeJS开发环境》
安装TortoiseGit
下载地址:https://tortoisegit.org/
安装NodeJS 8.x
https://nodejs.org/en/
安装VS Code Insiders
https://code.visualstudio.com/

图片:
《NodeJS开发环境》

VS Code 必装插件
TypeScript Importer (用于import的自动代码提示)
推荐可选插件(可选)
IntelliJ IDEA Keybindings (使用IDEA Style的快捷键)
推荐全局设置(可选)
// 将设置放入此文件中以覆盖默认设置
{

"editor.fontSize": 18,
"terminal.integrated.fontSize": 16,
"window.zoomLevel": 0,
"terminal.integrated.shell.windows": "C:\\Windows\\Sysnative\\cmd.exe",
"editor.mouseWheelScrollSensitivity": 1.5,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"tsimporter.preferRelative": true,
"tsimporter.filesToExclude": [
    "dist"
],
"tsimporter.lowImportance": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"zenMode.hideTabs": false

}
推荐代码片段助手(可选)
https://github.com/k8w/vscode…

    原文作者:Greed
    原文地址: https://segmentfault.com/a/1190000019139431
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞