nodejs环境快速搭建(centos,nvm)

前端之家收集整理的这篇文章主要介绍了nodejs环境快速搭建(centos,nvm)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

node.js 环境搭建方式比较快的通常有两种:
1.直接安装官方镜像,手动修改环境变量
2.如果你需要随时切换node.js版本的话,可以使用nvm进行版本控制,

以centos为例:
1.首先需要有git

  1. yum install git
  1. 有git 之后,直接从github上clone项目到本地
    假设放~/git 目录
  1. $ cd ~/git
  2. $ git clone https://github.com/creationix/nvm.git

完成后需要执行下载下来的nvm文件

  1. source ~/git/nvm/nvm.sh

3.nvm可以查看nvm的常用命令

  1. $ nvm
  2. Node Version Manager
  3.  
  4. Note: <version> refers to any version-like string nvm understands. This includes:
  5. - full or partial version numbers,starting with an optional "v" (0.10,v0.1.2,v1)
  6. - default (built-in) aliases: node,stable,unstable,iojs,system
  7. - custom aliases you define with `nvm alias foo`
  8.  
  9. Any options that produce colorized output should respect the `--no-colors` option.
  10.  
  11. Usage:
  12. nvm --help Show this message
  13. nvm --version Print out the installed version of nvm
  14. nvm install [-s] <version> Download and install a <version>,[-s] from source. Uses .nvmrc if available
  15. --reinstall-packages-from=<version> When installing,reinstall packages installed in <node|iojs|node version number>
  16. --lts When installing,only select from LTS (long-term support) versions
  17. --lts=<LTS name> When installing,only select from versions for a specific LTS line
  18. --skip-default-packages When installing,skip the default-packages file if it exists
  19. --latest-npm After installing,attempt to upgrade to the latest working npm on the given node version
  20. nvm uninstall <version> Uninstall a version
  21. nvm uninstall --lts Uninstall using automatic LTS (long-term support) alias `lts/*`,if available.
  22. nvm uninstall --lts=<LTS name> Uninstall using automatic alias for provided LTS line,if available.
  23. nvm use [--silent] <version> Modify PATH to use <version>. Uses .nvmrc if available
  24. --lts Uses automatic LTS (long-term support) alias `lts/*`,if available.
  25. --lts=<LTS name> Uses automatic alias for provided LTS line,if available.
  26. nvm exec [--silent] <version> [<command>] Run <command> on <version>. Uses .nvmrc if available
  27. --lts Uses automatic LTS (long-term support) alias `lts/*`,if available.
  28. nvm run [--silent] <version> [<args>] Run `node` on <version> with <args> as arguments. Uses .nvmrc if available
  29. --lts Uses automatic LTS (long-term support) alias `lts/*`,if available.
  30. nvm current Display currently activated version
  31. nvm ls List installed versions
  32. nvm ls <version> List versions matching a given <version>
  33. nvm ls-remote List remote versions available for install
  34. --lts When listing,only show LTS (long-term support) versions
  35. nvm ls-remote <version> List remote versions available for install,matching a given <version>
  36. --lts When listing,only show LTS (long-term support) versions
  37. --lts=<LTS name> When listing,only show versions for a specific LTS line
  38. nvm version <version> Resolve the given description to a single local version
  39. nvm version-remote <version> Resolve the given description to a single remote version
  40. --lts When listing,only select from LTS (long-term support) versions
  41. --lts=<LTS name> When listing,only select from versions for a specific LTS line
  42. nvm deactivate Undo effects of `nvm` on current shell
  43. nvm alias [<pattern>] Show all aliases beginning with <pattern>
  44. nvm alias <name> <version> Set an alias named <name> pointing to <version>
  45. nvm unalias <name> Deletes the alias named <name>
  46. nvm install-latest-npm Attempt to upgrade to the latest working `npm` on the current node version
  47. nvm reinstall-packages <version> Reinstall global `npm` packages contained in <version> to current version
  48. nvm unload Unload `nvm` from shell
  49. nvm which [<version>] Display path to installed node version. Uses .nvmrc if available
  50. nvm cache dir Display path to the cache directory for nvm
  51. nvm cache clear Empty cache directory for nvm
  52.  
  53. Example:
  54. nvm install 8.0.0 Install a specific version number
  55. nvm use 8.0 Use the latest available 8.0.x release
  56. nvm run 6.10.3 app.js Run app.js using node 6.10.3
  57. nvm exec 4.8.3 node app.js Run `node app.js` with the PATH pointing to node 4.8.3
  58. nvm alias default 8.1.0 Set default node version on a shell
  59. nvm alias default node Always default to the latest available node version on a shell
  60.  
  61. Note:
  62. to remove,delete,or uninstall nvm - just remove the `$NVM_DIR` folder (usually `~/.nvm`)
  1. 安装任意版本的node
  1. NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node nvm install 6

直接按y,过掉

  1. ######################################################################## 100.0%
  2. Now using node v6.3.2

此时已经安装好node跟 npm,可以检验一下版本

这里会出现一个问题,等你下次启动centos的时候,会发现node.js用不了,那是因为你没有输入到环境变量的启动上

5.你可以在在 ~/.bashrc,~/.bash_profile,~/.profile,或者 ~/.zshrc 文件添加以下命令:

  1. # nvm
  2. export NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node
  3. source ~/git/nvm/nvm.sh

再输入

  1. nvm ls

你可以看到版本的信息

猜你在找的CentOS相关文章