windows 10 搭建angular开发环境(转载)

转载地址: https://blog.csdn.net/White_Idiot/article/details/77871471;

安装主要步骤可以参考转载地址。

遇到几个坑,因为之前没玩过前后端分离。

这里记录下我遇到的几个坑

 

       1、在安装完Angular-cli后,输入ng -v命令 一直提示

            “ng -v  不是内部或外部命令”

            解决:安装nodejs时,dos窗口用管理员身份运行

       2、idea启动angular项目后,报错

           Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 10.x

           Found bindings for the following environments:
              - Windows 64-bit with Node.js 6.x
              - Windows 64-bit with Node.js 10.x

         解决:进入项目工程 执行 npm rebuild node-sass,再npm update,重新启动即可

你可能感兴趣的:(windows 10 搭建angular开发环境(转载))