近期做项目,正好用到了AngularJS,所以就想着赶快整理成博文,避免回头给忘了.第一次接触AngularJS是两年前,那会儿公司用的是BootStrap做页面,然后配合AngularJS1.x做一些处理.后来身边人极力推荐让用2.x.说是2.x比1.x有了非常大的变动,但一直没空去整,一直搁到现在.
AngularJS6.x仍然是基于nodeJS的,所以如果我们想要搭建一个AngularJS的环境,首先我们要安装nodeJs,这里要强调一点,如果我们要用angularJs6.x那么我们安装的Nodejs版本必须大于等于8.x,并且npm版本必须大于等于5.x.
这里我的操作系统是CentOS7-1804的,然后安装命令如下:
<pre style="margin-left:66.0pt;text-indent:-18.0pt;mso-list:l3 level1 lfo2">1. 静默添加nodejs地址 并将他安装到bash里:
curl --silent --location https://rpm.nodesource.com/setup_10.x | sudo bash -</pre>
<pre style="margin-left:66.0pt;text-indent:-18.0pt;mso-list:l3 level1 lfo2">2. 安装nodejs的编译环境: yum
install gcc-c++
make</pre>
<pre style="margin-left:66.0pt;text-indent:-18.0pt;mso-list:l3 level1 lfo2">3.
安装nodejs: yum -y
install nodejs
</pre>
<pre style="margin-left:39.75pt;
mso-para-margin-left:1.5gd;text-indent:-24.0pt;mso-char-indent-count:-2.0">安装之后,运行npm -v效果图如下:
<pre style="margin-left:
39.75pt;mso-para-margin-left:1.5gd;text-indent:-24.0pt;mso-char-indent-count:
-2.0">运行node -v效果图如下:
<pre style="text-indent:
18.0pt;mso-char-indent-count:1.5">有了这两个提示,就说明我们的Nodejs已经安装成功了,然后我们开始安装AngularJs/cli: sudo npm install -g @angular/cli</pre>
<pre style="text-indent:18.0pt;mso-char-indent-count:1.5">在这里可能会有一些安装错误,此时我们可以卸载然后重新安装,卸载命令如下:</pre>
<pre style="margin-left:36.0pt;text-indent:-18.0pt;
mso-list:l1 level1 lfo1">1. npm uninstall -g angular-cli卸载旧版本 npm uninstall @angular/cli 卸载新版本</pre>
<pre style="margin-left:36.0pt;text-indent:-18.0pt;mso-list:l1 level1 lfo1">2. npm cache clean 清理缓存 npm cache verify –force 强制清理缓存 </pre>
<pre style="text-indent:18.0pt;
mso-char-indent-count:1.5">另外,我们安装执行过后,可能会出现如下图一样的警告,这是因为fsevents@1.2.4是mac系统使用的,如果我们使用的是其他的系统就会出现这样的提醒,所以这样是正常的:
<pre style="text-indent:18.0pt;mso-char-indent-count:1.5">截止到这里,环境的准备并没有结束,在创建项目的时候,angularJs6.x还用到了git命令,如果没有安装,就会报错说git命令没找到,因此我们还需要安装git.因为我比较喜欢新的软件,所以直接装了git2.x:</pre>
<pre style="margin-left:36.0pt;text-indent:-18.0pt;mso-list:l2 level1 lfo3">1. yum install https://centos7.iuscommunity.org/ius-release.rpm</pre>
<pre style="margin-left:36.0pt;text-indent:-18.0pt;mso-list:l2 level1 lfo3">2. yum install git2u</pre>
<pre style="margin-left:36.0pt;
<pre style="text-indent:24.0pt;
mso-char-indent-count:2.0">环境准备好后,我们开始创建项目并运行:</pre>
<pre style="margin-left:60.0pt;text-indent:-18.0pt;
mso-list:l0 level1 lfo4">1. ng new conk-out</pre>
<pre style="margin-left:60.0pt;
text-indent:-18.0pt;mso-list:l0 level1 lfo4">2. cd conk-out</pre>
<pre style="margin-left:60.0pt;text-indent:
-18.0pt;mso-list:l0 level1 lfo4">3. ng serve –open</pre>