centos7 安装nodejs

官网地址:https://github.com/creationix/nvm/blob/master/README.markdown

1、安装:

curl -o-https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh|bash

source ~/.bash_profile

2、列出所有版本

nvmlist-remote


centos7 安装nodejs_第1张图片

返回如下结果:

3、安装所需要的版本

nvminstallv7.3.0

4、查看已安装版本

nvm list


centos7 安装nodejs_第2张图片

5、切换版本

nvmusev.3.0

6、设置默认版本

nvmaliasdefaultv7.3.0

查看Nvm版本

nvm --version

参考文献:http://blog.csdn.net/xuaa/article/details/52262586

设置node.js淘宝镜像,国外太慢

npm config set registry "

https://registry.npm.taobao.org "

替换回官方的下载源:

npm config set registry https://registry.npmjs.org/

1、安装typescript

npm install -g typescript

查看版本:

tsc –v

更新TypeScript

Compiler

·输入指令:npm update -g typescript

·查看版本:tsc -v

2、安装typings

npminstall-g typings

安装完成后,在命令行中输入:

typings--version

看到版本信息就表示typings工具安装完成了:


Typings VS TSD

Typings是作为TSD的替代者而出现的,如果你已经安装了TSD,那么需要知道现在TSD已经不推荐使用了。如果已经安装TSD请执行下面的命令来移除它:

npm rm -g tsd

3、安装node的.d.ts库

·输入指令:typings install dt~node --global

4、安装构建工具

npm install gulp -g//构建工具,非常重要

gulp和webpack可以混合使用,也可以独立使用

npm install gulp-webpack –g

参考资料:https://www.npmjs.com/package/gulp-webpack

vargulp=require('gulp');

varwebpack=require('gulp-webpack');

gulp.task('default',function() {

returngulp.src('src/entry.js')

.pipe(webpack())

.pipe(gulp.dest('dist/'));

});

另安装git命令:

Yum install git

使用Visual Studio Code搭建TypeScript开发环境

http://www.cnblogs.com/sunjie9606/p/5945540.html

angular2 ,asp.net.core开发教程

http://stephenwalther.com/archive/2015/01/12/asp-net-5-and-angularjs-part-1-configuring-grunt-uglify-and-angularjs

.net core单点登录

http://www.cnblogs.com/hantianwei/p/5699370.html

Angular2学习资料

https://segmentfault.com/a/1190000003761054

https://github.com/lewis617/angular2-tutorial

微信小程序开发教程:

http://www.runoob.com/w3cnote/wx-xcx-repo.html#id1

http://www.aspku.com/kaifa/net/200986.html

�z��ۈͿb���m�

你可能感兴趣的:(centos7 安装nodejs)