首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

mac版本下的nvm包

前端 452.35KB 2 需要积分: 1
立即下载

资源介绍:

mac版本下的nvm包
nvm project logo # Node Version Manager [![Build Status](https://app.travis-ci.com/nvm-sh/nvm.svg?branch=master)][3] [![nvm version](https://img.shields.io/badge/version-v0.40.1-yellow.svg)][4] [![CII Best Practices](https://bestpractices.dev/projects/684/badge)](https://bestpractices.dev/projects/684) ## Table of Contents - [Intro](#intro) - [About](#about) - [Installing and Updating](#installing-and-updating) - [Install & Update Script](#install--update-script) - [Additional Notes](#additional-notes) - [Troubleshooting on Linux](#troubleshooting-on-linux) - [Troubleshooting on macOS](#troubleshooting-on-macos) - [Ansible](#ansible) - [Verify Installation](#verify-installation) - [Important Notes](#important-notes) - [Git Install](#git-install) - [Manual Install](#manual-install) - [Manual Upgrade](#manual-upgrade) - [Usage](#usage) - [Long-term Support](#long-term-support) - [Migrating Global Packages While Installing](#migrating-global-packages-while-installing) - [Default Global Packages From File While Installing](#default-global-packages-from-file-while-installing) - [io.js](#iojs) - [System Version of Node](#system-version-of-node) - [Listing Versions](#listing-versions) - [Setting Custom Colors](#setting-custom-colors) - [Persisting custom colors](#persisting-custom-colors) - [Suppressing colorized output](#suppressing-colorized-output) - [Restoring PATH](#restoring-path) - [Set default node version](#set-default-node-version) - [Use a mirror of node binaries](#use-a-mirror-of-node-binaries) - [Pass Authorization header to mirror](#pass-authorization-header-to-mirror) - [.nvmrc](#nvmrc) - [Deeper Shell Integration](#deeper-shell-integration) - [Calling `nvm use` automatically in a directory with a `.nvmrc` file](#calling-nvm-use-automatically-in-a-directory-with-a-nvmrc-file) - [bash](#bash) - [zsh](#zsh) - [fish](#fish) - [Running Tests](#running-tests) - [Environment variables](#environment-variables) - [Bash Completion](#bash-completion) - [Usage](#usage-1) - [Compatibility Issues](#compatibility-issues) - [Installing nvm on Alpine Linux](#installing-nvm-on-alpine-linux) - [Alpine Linux 3.13+](#alpine-linux-313) - [Alpine Linux 3.5 - 3.12](#alpine-linux-35---312) - [Uninstalling / Removal](#uninstalling--removal) - [Manual Uninstall](#manual-uninstall) - [Docker For Development Environment](#docker-for-development-environment) - [Problems](#problems) - [macOS Troubleshooting](#macos-troubleshooting) - [WSL Troubleshooting](#wsl-troubleshooting) - [Maintainers](#maintainers) - [Project Support](#project-support) - [Enterprise Support](#enterprise-support) - [License](#license) - [Copyright notice](#copyright-notice) ## Intro `nvm` allows you to quickly install and use different versions of node via the command line. **Example:** ```sh $ nvm use 16 Now using node v16.9.1 (npm v7.21.1) $ node -v v16.9.1 $ nvm use 14 Now using node v14.18.0 (npm v6.14.15) $ node -v v14.18.0 $ nvm install 12 Now using node v12.22.6 (npm v6.14.5) $ node -v v12.22.6 ``` Simple as that! ## About nvm is a version manager for [node.js](https://nodejs.org/en/), designed to be installed per-user, and invoked per-shell. `nvm` works on any POSIX-compliant shell (sh, dash, ksh, zsh, bash), in particular on these platforms: unix, macOS, and [windows WSL](https://github.com/nvm-sh/nvm#important-notes). ## Installing and Updating ### Install & Update Script To **install** or **update** nvm, you should run the [install script][2]. To do that, you may either download and run the script manually, or use the following cURL or Wget command: ```sh curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash ``` ```sh wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash ``` Running either of the above commands downloads a script and runs it. The script clones the nvm repository to `~/.nvm`, and attempts to add the source lines from the snippet below to the correct profile file (`~/.bash_profile`, `~/.zshrc`, `~/.profile`, or `~/.bashrc`). ```sh export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm ``` #### Additional Notes - If the environment variable `$XDG_CONFIG_HOME` is present, it will place the `nvm` files there. - You can add `--no-use` to the end of the above script (...`nvm.sh --no-use`) to postpone using `nvm` until you manually [`use`](#usage) it. - You can customize the install source, directory, profile, and version using the `NVM_SOURCE`, `NVM_DIR`, `PROFILE`, and `NODE_VERSION` variables. Eg: `curl ... | NVM_DIR="path/to/nvm"`. Ensure that the `NVM_DIR` does not contain a trailing slash. - The installer can use `git`, `curl`, or `wget` to download `nvm`, whichever is available. - You can instruct the installer to not edit your shell config (for example if you already get completions via a [zsh nvm plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/nvm)) by setting `PROFILE=/dev/null` before running the `install.sh` script. Here's an example one-line command to do that: `PROFILE=/dev/null bash -c 'curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash'` #### Troubleshooting on Linux On Linux, after running the install script, if you get `nvm: command not found` or see no feedback from your terminal after you type `command -v nvm`, simply close your current terminal, open a new terminal, and try verifying again. Alternatively, you can run the following commands for the different shells on the command line: *bash*: `source ~/.bashrc` *zsh*: `source ~/.zshrc` *ksh*: `. ~/.profile` These should pick up the `nvm` command. #### Troubleshooting on macOS Since OS X 10.9, `/usr/bin/git` has been preset by Xcode command line tools, which means we can't properly detect if Git is installed or not. You need to manually install the Xcode command line tools before running the install script, otherwise, it'll fail. (see [#1782](https://github.com/nvm-sh/nvm/issues/1782)) If you get `nvm: command not found` after running the install script, one of the following might be the reason: - Since macOS 10.15, the default shell is `zsh` and nvm will look for `.zshrc` to update, none is installed by default. Create one with `touch ~/.zshrc` and run the install script again. - If you use bash, the previous default shell, your system may not have `.bash_profile` or `.bashrc` files where the command is set up. Create one of them with `touch ~/.bash_profile` or `touch ~/.bashrc` and run the install script again. Then, run `. ~/.bash_profile` or `. ~/.bashrc` to pick up the `nvm` command. - You have previously used `bash`, but you have `zsh` installed. You need to manually add [these lines](#manual-install) to `~/.zshrc` and run `. ~/.zshrc`. - You might need to restart your terminal instance or run `. ~/.nvm/nvm.sh`. Restarting your terminal/opening a new tab/window, or running the source command will load the command and the new configuration. - If the above didn't help, you might need to restart your terminal instance. Try o

资源文件列表:

nvm-master.zip 大约有411个文件
  1. nvm-master/
  2. nvm-master/.dockerignore 155B
  3. nvm-master/.editorconfig 658B
  4. nvm-master/.gitattributes 19B
  5. nvm-master/.github/
  6. nvm-master/.github/FUNDING.yml 574B
  7. nvm-master/.github/ISSUE_TEMPLATE.md 1.05KB
  8. nvm-master/.github/SECURITY.md 1.21KB
  9. nvm-master/.github/THREAT_MODEL.md 8.54KB
  10. nvm-master/.github/external-threat-actor.png 134.18KB
  11. nvm-master/.github/insider-threat-actor-and-libs.png 54.75KB
  12. nvm-master/.github/workflows/
  13. nvm-master/.github/workflows/latest-npm.yml 1.98KB
  14. nvm-master/.github/workflows/lint.yml 1.94KB
  15. nvm-master/.github/workflows/nvm-install-test.yml 3.33KB
  16. nvm-master/.github/workflows/rebase.yml 489B
  17. nvm-master/.github/workflows/release.yml 1.02KB
  18. nvm-master/.github/workflows/require-allow-edits.yml 465B
  19. nvm-master/.github/workflows/shellcheck.yml 1.36KB
  20. nvm-master/.github/workflows/tests.yml 2.06KB
  21. nvm-master/.github/workflows/toc.yml 984B
  22. nvm-master/.github/workflows/windows-npm.yml 6.04KB
  23. nvm-master/.gitignore 277B
  24. nvm-master/.gitmodules 103B
  25. nvm-master/.mailmap 51B
  26. nvm-master/.npmrc 19B
  27. nvm-master/.travis.yml 3.59KB
  28. nvm-master/CODE_OF_CONDUCT.md 7.38KB
  29. nvm-master/CONTRIBUTING.md 4.63KB
  30. nvm-master/Dockerfile 3.52KB
  31. nvm-master/GOVERNANCE.md 467B
  32. nvm-master/LICENSE.md 1.09KB
  33. nvm-master/Makefile 5.31KB
  34. nvm-master/PROJECT_CHARTER.md 2.87KB
  35. nvm-master/README.md 47.07KB
  36. nvm-master/ROADMAP.md 882B
  37. nvm-master/bash_completion 2.25KB
  38. nvm-master/install.sh 16.17KB
  39. nvm-master/nvm-exec 371B
  40. nvm-master/nvm.sh 145.97KB
  41. nvm-master/package.json 2.86KB
  42. nvm-master/rename_test.sh 1.21KB
  43. nvm-master/test/
  44. nvm-master/test/common.sh 5.07KB
  45. nvm-master/test/fast/
  46. nvm-master/test/fast/Aliases/
  47. nvm-master/test/fast/Aliases/'nvm alias' should ignore leading blank lines in the file 456B
  48. nvm-master/test/fast/Aliases/'nvm alias' should not accept aliases with a hash 1.32KB
  49. nvm-master/test/fast/Aliases/'nvm alias' should not accept aliases with slashes 1.29KB
  50. nvm-master/test/fast/Aliases/'nvm unalias' should accept aliases when they shadow a built-in alias 658B
  51. nvm-master/test/fast/Aliases/'nvm unalias' should not accept aliases with names equal to built-in alias 1.25KB
  52. nvm-master/test/fast/Aliases/'nvm unalias' should not accept aliases with slashes 1.28KB
  53. nvm-master/test/fast/Aliases/Running 'nvm alias ˂aliasname˃ ˂target˃' again should change the target 864B
  54. nvm-master/test/fast/Aliases/Running 'nvm alias ˂aliasname˃' should list but one alias 75B
  55. nvm-master/test/fast/Aliases/Running 'nvm alias' lists implicit aliases when they do not exist 1.22KB
  56. nvm-master/test/fast/Aliases/Running 'nvm alias' lists manual aliases instead of implicit aliases when present 1.63KB
  57. nvm-master/test/fast/Aliases/Running 'nvm alias' should list all aliases 2.99KB
  58. nvm-master/test/fast/Aliases/circular/
  59. nvm-master/test/fast/Aliases/circular/nvm_resolve_alias 1.62KB
  60. nvm-master/test/fast/Aliases/circular/nvm_resolve_local_alias 1.67KB
  61. nvm-master/test/fast/Aliases/circular/setup 193B
  62. nvm-master/test/fast/Aliases/circular/teardown 161B
  63. nvm-master/test/fast/Aliases/lts/
  64. nvm-master/test/fast/Aliases/lts/'nvm alias' should ensure LTS alias dir exists 355B
  65. nvm-master/test/fast/Aliases/lts/setup_dir 191B
  66. nvm-master/test/fast/Aliases/lts/teardown_dir 195B
  67. nvm-master/test/fast/Aliases/nvm_ensure_default_set 695B
  68. nvm-master/test/fast/Aliases/nvm_list_aliases calls nvm_get_colors 514B
  69. nvm-master/test/fast/Aliases/nvm_list_aliases works with LTS aliases 720B
  70. nvm-master/test/fast/Aliases/nvm_list_aliases works with no LTS aliases present 375B
  71. nvm-master/test/fast/Aliases/nvm_print_alias_path calls nvm_get_colors 647B
  72. nvm-master/test/fast/Aliases/nvm_print_formatted_alias calls nvm_get_colors 648B
  73. nvm-master/test/fast/Aliases/nvm_resolve_alias 1.62KB
  74. nvm-master/test/fast/Aliases/nvm_resolve_local_alias 1.51KB
  75. nvm-master/test/fast/Aliases/setup 334B
  76. nvm-master/test/fast/Aliases/teardown 492B
  77. nvm-master/test/fast/Listing paths/
  78. nvm-master/test/fast/Listing paths/Running 'nvm which 0.0.2' should display only version 0.0.2 854B
  79. nvm-master/test/fast/Listing paths/Running 'nvm which foo' should return a nonzero exit code when not found 78B
  80. nvm-master/test/fast/Listing paths/teardown 71B
  81. nvm-master/test/fast/Listing versions/
  82. nvm-master/test/fast/Listing versions/Running 'nvm ls --no-alias' does not call into nvm_alias 896B
  83. nvm-master/test/fast/Listing versions/Running 'nvm ls --no-alias' with a pattern errors 500B
  84. nvm-master/test/fast/Listing versions/Running 'nvm ls 0.0.2' should display only version 0.0.2 411B
  85. nvm-master/test/fast/Listing versions/Running 'nvm ls 0.2' should display only 0.2.x versions 861B
  86. nvm-master/test/fast/Listing versions/Running 'nvm ls foo' should return a nonzero exit code when not found 73B
  87. nvm-master/test/fast/Listing versions/Running 'nvm ls io' should return NA 56B
  88. nvm-master/test/fast/Listing versions/Running 'nvm ls node_' should return a nonzero exit code when not found 59B
  89. nvm-master/test/fast/Listing versions/Running 'nvm ls stable' and 'nvm ls unstable' should return the appropriate implicit alias 902B
  90. nvm-master/test/fast/Listing versions/Running 'nvm ls system' should include 'system' when appropriate 558B
  91. nvm-master/test/fast/Listing versions/Running 'nvm ls' calls into nvm_alias 890B
  92. nvm-master/test/fast/Listing versions/Running 'nvm ls' should display all installed versions 1.24KB
  93. nvm-master/test/fast/Listing versions/Running 'nvm ls' should filter out '.nvm' 192B
  94. nvm-master/test/fast/Listing versions/Running 'nvm ls' should filter out 'versions' 199B
  95. nvm-master/test/fast/Listing versions/Running 'nvm ls' should include 'system' when appropriate 530B
  96. nvm-master/test/fast/Listing versions/Running 'nvm ls' should list versions in the 'versions' directory 320B
  97. nvm-master/test/fast/Listing versions/Running 'nvm ls' should not show a trailing slash 819B
  98. nvm-master/test/fast/Listing versions/Running 'nvm ls' with node-like versioning vx.x.x should only list a matched version 188B
  99. nvm-master/test/fast/Listing versions/Running 'nvm ls' with nounset should not fail 622B
  100. nvm-master/test/fast/Listing versions/Using a nonstandard IFS should not break 297B
  101. nvm-master/test/fast/Listing versions/teardown 384B
  102. nvm-master/test/fast/Running 'nvm alias' should create a file in the alias directory 146B
  103. nvm-master/test/fast/Running 'nvm current' should display current nvm environment 266B
  104. nvm-master/test/fast/Running 'nvm deactivate' should unset the nvm environment variables 1010B
  105. nvm-master/test/fast/Running 'nvm install' with '--reinstall-packages-from' requires a valid version 2.49KB
  106. nvm-master/test/fast/Running 'nvm install' with an invalid version fails nicely 412B
  107. nvm-master/test/fast/Running 'nvm unalias' should remove the alias file 147B
  108. nvm-master/test/fast/Running 'nvm uninstall' should remove the appropriate directory 116B
  109. nvm-master/test/fast/Running 'nvm uninstall' with incorrect file permissions fails nicely 320B
  110. nvm-master/test/fast/Running 'nvm unload' should unset all function and variables 723B
  111. nvm-master/test/fast/Running 'nvm use foo' where 'foo' is circular aborts 992B
  112. nvm-master/test/fast/Running 'nvm use iojs' uses latest io.js version 1KB
  113. nvm-master/test/fast/Running 'nvm use system' should work as expected 1.52KB
  114. nvm-master/test/fast/Running 'nvm use x' should create and change the 'current' symlink 770B
  115. nvm-master/test/fast/Running 'nvm use x' should not create the 'current' symlink if $NVM_SYMLINK_CURRENT is false 1.98KB
  116. nvm-master/test/fast/Running 'nvm use' should drop CR char automatically 512B
  117. nvm-master/test/fast/Set Colors/
  118. nvm-master/test/fast/Set Colors/nvm_echo_with_colors 342B
  119. nvm-master/test/fast/Set Colors/nvm_err_with_colors 331B
  120. nvm-master/test/fast/Set Colors/nvm_print_default_alias calls nvm_get_colors 581B
  121. nvm-master/test/fast/Set Colors/nvm_print_versions calls nvm_get_colors 1.07KB
  122. nvm-master/test/fast/Sourcing nvm.sh should make the nvm command available 41B
  123. nvm-master/test/fast/Sourcing nvm.sh should not modify parameters of caller 62B
  124. nvm-master/test/fast/Unit tests/
  125. nvm-master/test/fast/Unit tests/Running 'nvm install --save' works as expected' 1.33KB
  126. nvm-master/test/fast/Unit tests/Running 'nvm use --save' works as expected' 1.32KB
  127. nvm-master/test/fast/Unit tests/Running 'nvm use --save' works with a .nvmrc in the parent dir 1.17KB
  128. nvm-master/test/fast/Unit tests/Running 'nvm use --silent --save' doesn't output anything 1.21KB
  129. nvm-master/test/fast/Unit tests/mocks/
  130. nvm-master/test/fast/Unit tests/mocks/LTS_names.txt 64B
  131. nvm-master/test/fast/Unit tests/mocks/iojs.org-dist-index.tab 7.22KB
  132. nvm-master/test/fast/Unit tests/mocks/lts-star.txt 9B
  133. nvm-master/test/fast/Unit tests/mocks/nodejs.org-dist-index.tab 160.78KB
  134. nvm-master/test/fast/Unit tests/mocks/nodejs.org-download-nightly-index.tab 105.08KB
  135. nvm-master/test/fast/Unit tests/mocks/nvm ls-remote iojs.txt 656B
  136. nvm-master/test/fast/Unit tests/mocks/nvm ls-remote lts.txt 9KB
  137. nvm-master/test/fast/Unit tests/mocks/nvm ls-remote node.txt 16.79KB
  138. nvm-master/test/fast/Unit tests/mocks/nvm ls-remote.txt 17.43KB
  139. nvm-master/test/fast/Unit tests/mocks/nvm_ls_remote LTS argon.txt 470B
  140. nvm-master/test/fast/Unit tests/mocks/nvm_ls_remote LTS nightly argon.txt 4B
  141. nvm-master/test/fast/Unit tests/mocks/nvm_ls_remote LTS nightly.txt 259B
  142. nvm-master/test/fast/Unit tests/mocks/nvm_ls_remote LTS.txt 3.23KB
  143. nvm-master/test/fast/Unit tests/mocks/nvm_ls_remote nightly.txt 1.7KB
  144. nvm-master/test/fast/Unit tests/mocks/nvm_ls_remote stable nightly.txt 34B
  145. nvm-master/test/fast/Unit tests/mocks/nvm_ls_remote stable.txt 8B
  146. nvm-master/test/fast/Unit tests/mocks/nvm_ls_remote.txt 7.08KB
  147. nvm-master/test/fast/Unit tests/mocks/nvm_ls_remote_iojs.txt 492B
  148. nvm-master/test/fast/Unit tests/mocks/nvm_make_alias LTS alias calls.txt 192B
  149. nvm-master/test/fast/Unit tests/mocks/nvm_print_implicit_alias remote stable nightly.txt 5B
  150. nvm-master/test/fast/Unit tests/mocks/nvm_print_implicit_alias remote stable.txt 5B
  151. nvm-master/test/fast/Unit tests/mocks/project_dirs/
  152. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested-pkg/
  153. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested-pkg/node_modules/
  154. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested-pkg/node_modules/foo/
  155. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested-pkg/node_modules/foo/bar/
  156. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested-pkg/node_modules/foo/bar/.gitkeep
  157. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested-pkg/node_modules/foo/package.json
  158. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested/
  159. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested/node_modules/
  160. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested/node_modules/foo/
  161. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested/node_modules/foo/bar/
  162. nvm-master/test/fast/Unit tests/mocks/project_dirs/inside-n_m-nested/node_modules/foo/bar/.gitkeep
  163. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-both/
  164. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-both/a/
  165. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-both/a/b/
  166. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-both/a/b/c/
  167. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-both/a/b/c/d/
  168. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-both/a/b/c/d/.gitkeep
  169. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-both/node_modules/
  170. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-both/node_modules/.gitkeep
  171. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-both/package.json
  172. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-n_m/
  173. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-n_m/a/
  174. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-n_m/a/b/
  175. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-n_m/a/b/c/
  176. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-n_m/a/b/c/d/
  177. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-n_m/a/b/c/d/.gitkeep
  178. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-n_m/node_modules/
  179. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-n_m/node_modules/.gitkeep
  180. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-pkg/
  181. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-pkg/a/
  182. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-pkg/a/b/
  183. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-pkg/a/b/c/
  184. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-pkg/a/b/c/d/
  185. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-pkg/a/b/c/d/.gitkeep
  186. nvm-master/test/fast/Unit tests/mocks/project_dirs/nested-pkg/package.json
  187. nvm-master/test/fast/Unit tests/mocks/project_dirs/no-nesting-both/
  188. nvm-master/test/fast/Unit tests/mocks/project_dirs/no-nesting-both/node_modules/
  189. nvm-master/test/fast/Unit tests/mocks/project_dirs/no-nesting-both/node_modules/.gitkeep
  190. nvm-master/test/fast/Unit tests/mocks/project_dirs/no-nesting-both/package.json
  191. nvm-master/test/fast/Unit tests/mocks/project_dirs/no-nesting-n_m/
  192. nvm-master/test/fast/Unit tests/mocks/project_dirs/no-nesting-n_m/node_modules/
  193. nvm-master/test/fast/Unit tests/mocks/project_dirs/no-nesting-n_m/node_modules/.gitkeep
  194. nvm-master/test/fast/Unit tests/mocks/project_dirs/no-nesting-pkg/
  195. nvm-master/test/fast/Unit tests/mocks/project_dirs/no-nesting-pkg/package.json
  196. nvm-master/test/fast/Unit tests/nvm install -b 425B
  197. nvm-master/test/fast/Unit tests/nvm install with nonlowercase LTS name 860B
  198. nvm-master/test/fast/Unit tests/nvm ls-remote 2.59KB
  199. nvm-master/test/fast/Unit tests/nvm set_colors 1.84KB
  200. nvm-master/test/fast/Unit tests/nvm version-remote 2.22KB
  201. nvm-master/test/fast/Unit tests/nvm_add_iojs_prefix 408B
  202. nvm-master/test/fast/Unit tests/nvm_alias 1.01KB
  203. nvm-master/test/fast/Unit tests/nvm_alias LTS-N 692B
  204. nvm-master/test/fast/Unit tests/nvm_alias_path 164B
  205. nvm-master/test/fast/Unit tests/nvm_change_path 2.11KB
  206. nvm-master/test/fast/Unit tests/nvm_check_for_help 306B
  207. nvm-master/test/fast/Unit tests/nvm_clang_version 1.57KB
  208. nvm-master/test/fast/Unit tests/nvm_command_info 1.83KB
  209. nvm-master/test/fast/Unit tests/nvm_compare_checksum 2.66KB
  210. nvm-master/test/fast/Unit tests/nvm_compute_checksum 811B
  211. nvm-master/test/fast/Unit tests/nvm_curl_libz_support 1.22KB
  212. nvm-master/test/fast/Unit tests/nvm_curl_use_compression 1.71KB
  213. nvm-master/test/fast/Unit tests/nvm_curl_version 865B
  214. nvm-master/test/fast/Unit tests/nvm_die_on_prefix 10.43KB
  215. nvm-master/test/fast/Unit tests/nvm_download 1.25KB
  216. nvm-master/test/fast/Unit tests/nvm_download_artifact 1.99KB
  217. nvm-master/test/fast/Unit tests/nvm_ensure_default_set 523B
  218. nvm-master/test/fast/Unit tests/nvm_ensure_version_installed 3.2KB
  219. nvm-master/test/fast/Unit tests/nvm_ensure_version_prefix 639B
  220. nvm-master/test/fast/Unit tests/nvm_extract_tarball 863B
  221. nvm-master/test/fast/Unit tests/nvm_find_project_dir 1.45KB
  222. nvm-master/test/fast/Unit tests/nvm_find_up 907B
  223. nvm-master/test/fast/Unit tests/nvm_format_version 655B
  224. nvm-master/test/fast/Unit tests/nvm_get_arch 2.15KB
  225. nvm-master/test/fast/Unit tests/nvm_get_arch_unofficial 2.6KB
  226. nvm-master/test/fast/Unit tests/nvm_get_artifact_compression 661B
  227. nvm-master/test/fast/Unit tests/nvm_get_checksum 1.19KB
  228. nvm-master/test/fast/Unit tests/nvm_get_checksum_alg 272B
  229. nvm-master/test/fast/Unit tests/nvm_get_checksum_binary 399B
  230. nvm-master/test/fast/Unit tests/nvm_get_colors 3.07KB
  231. nvm-master/test/fast/Unit tests/nvm_get_default_packages 2.01KB
  232. nvm-master/test/fast/Unit tests/nvm_get_download_slug 4.3KB
  233. nvm-master/test/fast/Unit tests/nvm_get_latest missing curl or wget 455B
  234. nvm-master/test/fast/Unit tests/nvm_get_minor_version 1023B
  235. nvm-master/test/fast/Unit tests/nvm_get_mirror 1.96KB
  236. nvm-master/test/fast/Unit tests/nvm_has 352B
  237. nvm-master/test/fast/Unit tests/nvm_has_non_aliased 840B
  238. nvm-master/test/fast/Unit tests/nvm_has_solaris_binary 963B
  239. nvm-master/test/fast/Unit tests/nvm_has_system_iojs 375B
  240. nvm-master/test/fast/Unit tests/nvm_has_system_node 354B
  241. nvm-master/test/fast/Unit tests/nvm_install_binary_extract 1.72KB
  242. nvm-master/test/fast/Unit tests/nvm_install_binary_nosource 953B
  243. nvm-master/test/fast/Unit tests/nvm_install_latest_npm 1.31KB
  244. nvm-master/test/fast/Unit tests/nvm_install_no_progress_bar 2.54KB
  245. nvm-master/test/fast/Unit tests/nvm_iojs_prefix 178B
  246. nvm-master/test/fast/Unit tests/nvm_iojs_version_has_solaris_binary 596B
  247. nvm-master/test/fast/Unit tests/nvm_is_alias 520B
  248. nvm-master/test/fast/Unit tests/nvm_is_iojs_version 381B
  249. nvm-master/test/fast/Unit tests/nvm_is_merged_node_version 426B
  250. nvm-master/test/fast/Unit tests/nvm_is_natural_num 591B
  251. nvm-master/test/fast/Unit tests/nvm_is_valid_version 625B
  252. nvm-master/test/fast/Unit tests/nvm_is_version_installed 1.48KB
  253. nvm-master/test/fast/Unit tests/nvm_ls_current 1.5KB
  254. nvm-master/test/fast/Unit tests/nvm_ls_remote 2.73KB
  255. nvm-master/test/fast/Unit tests/nvm_ls_remote LTS aliases 1.23KB
  256. nvm-master/test/fast/Unit tests/nvm_ls_remote nightly 2.57KB
  257. nvm-master/test/fast/Unit tests/nvm_ls_remote_iojs 1.03KB
  258. nvm-master/test/fast/Unit tests/nvm_make_alias 770B
  259. nvm-master/test/fast/Unit tests/nvm_node_prefix 178B
  260. nvm-master/test/fast/Unit tests/nvm_node_version_has_solaris_binary 1.15KB
  261. nvm-master/test/fast/Unit tests/nvm_normalize_lts 1.11KB
  262. nvm-master/test/fast/Unit tests/nvm_num_version_groups 1.13KB
  263. nvm-master/test/fast/Unit tests/nvm_print_alias_path 1.53KB
  264. nvm-master/test/fast/Unit tests/nvm_print_color_code 644B
  265. nvm-master/test/fast/Unit tests/nvm_print_default_alias 1.24KB
  266. nvm-master/test/fast/Unit tests/nvm_print_implicit_alias errors 1.35KB
  267. nvm-master/test/fast/Unit tests/nvm_print_implicit_alias success 3.24KB
  268. nvm-master/test/fast/Unit tests/nvm_print_npm_version 623B
  269. nvm-master/test/fast/Unit tests/nvm_process_nvmrc 1.2KB
  270. nvm-master/test/fast/Unit tests/nvm_remote_version 3.11KB
  271. nvm-master/test/fast/Unit tests/nvm_remote_versions 3.23KB
  272. nvm-master/test/fast/Unit tests/nvm_stdout_is_terminal 1.76KB
  273. nvm-master/test/fast/Unit tests/nvm_strip_iojs_prefix 521B
  274. nvm-master/test/fast/Unit tests/nvm_strip_path 943B
  275. nvm-master/test/fast/Unit tests/nvm_supports_xz 884B
  276. nvm-master/test/fast/Unit tests/nvm_tree_contains_path 1021B
  277. nvm-master/test/fast/Unit tests/nvm_use_if_needed 496B
  278. nvm-master/test/fast/Unit tests/nvm_validate_implicit_alias 1.02KB
  279. nvm-master/test/fast/Unit tests/nvm_version 1.82KB
  280. nvm-master/test/fast/Unit tests/nvm_version_dir 608B
  281. nvm-master/test/fast/Unit tests/nvm_version_greater 387B
  282. nvm-master/test/fast/Unit tests/nvm_version_path 692B
  283. nvm-master/test/fast/Unit tests/nvm_wrap_with_color_code 1B
  284. nvm-master/test/fast/Unit tests/nvm_write_nvmrc 1.71KB
  285. nvm-master/test/fast/nvm should remove the last trailing slash in $NVM_DIR 395B
  286. nvm-master/test/fast/setup 189B
  287. nvm-master/test/fast/setup_dir 195B
  288. nvm-master/test/fast/teardown 196B
  289. nvm-master/test/fast/teardown_dir 157B
  290. nvm-master/test/fixtures/
  291. nvm-master/test/fixtures/nvmrc/
  292. nvm-master/test/install_script/
  293. nvm-master/test/install_script/install_nvm_from_git 4.03KB
  294. nvm-master/test/install_script/nvm_check_global_modules 2KB
  295. nvm-master/test/install_script/nvm_detect_profile 3.94KB
  296. nvm-master/test/install_script/nvm_do_install 645B
  297. nvm-master/test/install_script/nvm_download 527B
  298. nvm-master/test/install_script/nvm_install_dir 677B
  299. nvm-master/test/install_script/nvm_install_with_aliased_dot 454B
  300. nvm-master/test/install_script/nvm_install_with_node_version 303B
  301. nvm-master/test/install_script/nvm_profile_is_bash_or_zsh 817B
  302. nvm-master/test/install_script/nvm_reset 1.34KB
  303. nvm-master/test/install_script/nvm_source 3.04KB
  304. nvm-master/test/installation_iojs/
  305. nvm-master/test/installation_iojs/install already installed uses it 1007B
  306. nvm-master/test/installation_iojs/install from binary 996B
  307. nvm-master/test/installation_iojs/install from source 664B
  308. nvm-master/test/installation_iojs/install two versions and use the latest one 924B
  309. nvm-master/test/installation_iojs/install version specified in .nvmrc from binary 652B
  310. nvm-master/test/installation_iojs/install version specified in .nvmrc from source 632B
  311. nvm-master/test/installation_iojs/install while reinstalling packages 1.13KB
  312. nvm-master/test/installation_iojs/nvm install v1 works 679B
  313. nvm-master/test/installation_iojs/setup_dir 62B
  314. nvm-master/test/installation_iojs/teardown_dir 243B
  315. nvm-master/test/installation_node/
  316. nvm-master/test/installation_node/default-packages 2.6KB
  317. nvm-master/test/installation_node/install LTS 1.16KB
  318. nvm-master/test/installation_node/install already installed uses it 705B
  319. nvm-master/test/installation_node/install from binary 678B
  320. nvm-master/test/installation_node/install from binary with binary flag set 1.51KB
  321. nvm-master/test/installation_node/install from source 834B
  322. nvm-master/test/installation_node/install from source with thread parameter 950B
  323. nvm-master/test/installation_node/install from source without V8 snapshot for ARM 762B
  324. nvm-master/test/installation_node/install hook 1.37KB
  325. nvm-master/test/installation_node/install latest npm 2.38KB
  326. nvm-master/test/installation_node/install on bash with ERR trap and set -E 1005B
  327. nvm-master/test/installation_node/install two versions and use the latest one 682B
  328. nvm-master/test/installation_node/install version specified in .nvmrc from binary 510B
  329. nvm-master/test/installation_node/install while reinstalling packages 1.53KB
  330. nvm-master/test/installation_node/install with --alias 244B
  331. nvm-master/test/installation_node/install with --default 251B
  332. nvm-master/test/installation_node/install with --latest-npm 269B
  333. nvm-master/test/installation_node/setup_dir 62B
  334. nvm-master/test/installation_node/teardown_dir 268B
  335. nvm-master/test/mocks/
  336. nvm-master/test/mocks/isainfo_amd64 70B
  337. nvm-master/test/mocks/isainfo_x86 63B
  338. nvm-master/test/mocks/pkg_info_amd64 153B
  339. nvm-master/test/mocks/pkg_info_fail 7B
  340. nvm-master/test/mocks/pkg_info_x86 12B
  341. nvm-master/test/mocks/uname_linux_armv8l 157B
  342. nvm-master/test/mocks/uname_osx_amd64 188B
  343. nvm-master/test/mocks/uname_osx_x86 182B
  344. nvm-master/test/mocks/uname_smartos_amd64 123B
  345. nvm-master/test/mocks/uname_smartos_x86 123B
  346. nvm-master/test/slow/
  347. nvm-master/test/slow/Running 'nvm current' should display current nvm environment 203B
  348. nvm-master/test/slow/nvm exec/
  349. nvm-master/test/slow/nvm exec/Preamble works and respects 'silent' flag 1.24KB
  350. nvm-master/test/slow/nvm exec/Running 'nvm exec --lts' should work 549B
  351. nvm-master/test/slow/nvm exec/Running 'nvm exec 0.x' should work 500B
  352. nvm-master/test/slow/nvm exec/Running 'nvm exec' should pick up .nvmrc version 506B
  353. nvm-master/test/slow/nvm exec/Running 'nvm exec' with help should not parse 206B
  354. nvm-master/test/slow/nvm exec/setup_dir 137B
  355. nvm-master/test/slow/nvm exec/teardown_dir 175B
  356. nvm-master/test/slow/nvm reinstall-packages/
  357. nvm-master/test/slow/nvm reinstall-packages/Running 'nvm copy-packages $(nvm ls current)' should error out 767B
  358. nvm-master/test/slow/nvm reinstall-packages/setup_dir 158B
  359. nvm-master/test/slow/nvm reinstall-packages/should work as expected 1.38KB
  360. nvm-master/test/slow/nvm reinstall-packages/teardown_dir 188B
  361. nvm-master/test/slow/nvm reinstall-packages/test-npmlink/
  362. nvm-master/test/slow/nvm reinstall-packages/test-npmlink/index.js 38B
  363. nvm-master/test/slow/nvm reinstall-packages/test-npmlink/package.json 191B
  364. nvm-master/test/slow/nvm reinstall-packages/works with no installs 460B
  365. nvm-master/test/slow/nvm run/
  366. nvm-master/test/slow/nvm run/Running 'nvm run --harmony --version' should work 258B
  367. nvm-master/test/slow/nvm run/Running 'nvm run --lts' should work 579B
  368. nvm-master/test/slow/nvm run/Running 'nvm run 0.x' should error out sensibly when 0.x is not installed 602B
  369. nvm-master/test/slow/nvm run/Running 'nvm run 0.x' should work 180B
  370. nvm-master/test/slow/nvm run/Running 'nvm run' should pick up .nvmrc version 917B
  371. nvm-master/test/slow/nvm run/setup_dir 144B
  372. nvm-master/test/slow/nvm run/teardown_dir 181B
  373. nvm-master/test/slow/nvm uninstall/
  374. nvm-master/test/slow/nvm uninstall/Running 'nvm uninstall 0.12.6' uninstalls v0.12.6 739B
  375. nvm-master/test/slow/nvm uninstall/Running 'nvm uninstall' with incorrect file permissions fails nicely 849B
  376. nvm-master/test/slow/nvm uninstall/setup_dir 49B
  377. nvm-master/test/slow/nvm uninstall/teardown_dir 66B
  378. nvm-master/test/slow/nvm use/
  379. nvm-master/test/slow/nvm use/Running 'nvm use --lts' uses latest LTS version 567B
  380. nvm-master/test/slow/nvm use/Running 'nvm use --lts=foo' uses latest 'foo' LTS version 613B
  381. nvm-master/test/slow/nvm use/Running 'nvm use iojs' uses latest io.js version 536B
  382. nvm-master/test/slow/nvm use/Running 'nvm use lts' shows actionable error 572B
  383. nvm-master/test/slow/nvm use/Running 'nvm use node --silent' doesn't print anything 338B
  384. nvm-master/test/slow/nvm use/Running 'nvm use node' uses latest stable node version 546B
  385. nvm-master/test/slow/nvm use/Running 'nvm use v1.0.0' uses iojs-v1.0.0 iojs version 560B
  386. nvm-master/test/slow/nvm use/Running 'nvm use' calls 'nvm_die_on_prefix' 642B
  387. nvm-master/test/slow/nvm use/Running 'nvm use' with nvmrc containing not installed version 881B
  388. nvm-master/test/slow/nvm use/setup_dir 530B
  389. nvm-master/test/slow/nvm use/teardown_dir 519B
  390. nvm-master/test/slow/nvm_get_latest/
  391. nvm-master/test/slow/nvm_get_latest/nvm_get_latest 4.82KB
  392. nvm-master/test/slow/nvm_get_latest/nvm_get_latest failed redirect 518B
  393. nvm-master/test/sourcing/
  394. nvm-master/test/sourcing/Sourcing nvm.sh global alias bug 863B
  395. nvm-master/test/sourcing/Sourcing nvm.sh should keep version if one is active 629B
  396. nvm-master/test/sourcing/Sourcing nvm.sh should use the default if available and no nvm node is loaded 1.15KB
  397. nvm-master/test/sourcing/Sourcing nvm.sh with --install and .nvmrc should install it 933B
  398. nvm-master/test/sourcing/Sourcing nvm.sh with --install should install the default 1.18KB
  399. nvm-master/test/sourcing/Sourcing nvm.sh with --no-use should not use anything 992B
  400. nvm-master/test/sourcing/Sourcing nvm.sh with no default should return 0 314B
  401. nvm-master/test/sourcing/setup_dir 373B
  402. nvm-master/test/sourcing/teardown_dir 146B
  403. nvm-master/test/xenial/
  404. nvm-master/test/xenial/install from source 834B
  405. nvm-master/test/xenial/install from source implicitly 587B
  406. nvm-master/test/xenial/install from source with thread parameter 950B
  407. nvm-master/test/xenial/install from source without V8 snapshot for ARM 762B
  408. nvm-master/test/xenial/install hook 1.37KB
  409. nvm-master/test/xenial/install version specified in .nvmrc from source 514B
  410. nvm-master/test/xenial/node 0.6.21 should install 0.6.21-pre 324B
  411. nvm-master/update_test_mocks.sh 2.42KB
0评论
提交 加载更多评论
其他资源 446441809262673jspm教案管理系统fuc7d.zip
446441809262673jspm教案管理系统fuc7d.zip
基于pygame的简易游戏框架.zip
基于pygame的简易游戏框架.zip
梦幻西游道人20241021f
梦幻西游道人是梦幻西游里面的一个NPC,主要是刷全服最实惠的高级兽决和其他很好用的比较贵的东西,在长安城、傲来国、长寿村中的任意一个场景出现,一般会出现30分钟,不过东西一般都被秒刷。 梦幻西游道人出现时间解析如下: 1.梦幻西游道人出现时间一直都保持着一年出现两次的规律,即2、3月份的元宵节期间来一次,9月份的教师节期间出现一次。 2.云游道人每个整点(0:00至7:00不出现)会在长安城、傲来国、长寿村中的任意一个场景出现,每次出现后停留时间为30分钟。
ch10-12.zip
ch10-12.zip
Windows pc端屏幕使用时间监控工具(安全无毒)- 首月免积分下载
可以记录当日屏幕使用累计时间,以及屏幕连续使用时间。当屏幕锁屏、注销、展示屏保之后连续使用时间会重置为0,重新开始计时;累计计时时间暂停。 功能: 1、 展示界面默认不展示时间信息,点击Display可以看到用时。 2、点击Hide隐藏用时。 3、 最小化之后会隐藏到托盘(通知栏)中,双击或者右键-Restore 可以恢复显示展示面板 4、点击面板中的关闭或者通知栏右键菜单中的Exit可以退出程序。 退出后,累计计时停止,重新启动程序后,累计计时会在上次关闭的基础上继续计时。 5、连续计时90分钟之后,会提示休息一下。之后会从0开始重新连续计时。 6、累计用时功能,需要C:盘的访问权限,否则无法使用。(如需要,请以管理员权限运行) 7、可通过windows 命令行窗口执行certutil -hashfile 文件路径\ScreenTime.exe MD5 和Readme中的值对比,是否损坏或被非法注册代码 原创作品,不好用之处请多多包涵
content_1729487674688.zip
content_1729487674688.zip
NSGA-III,可设置整型多目标寻优
NSGA-III,可设置整型多目标寻优
seeyouagain.zip
第三届“奇安信杯”网络安全技能竞赛部分题目