├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ ├── node.yml │ └── node_win.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── gpg ├── docker.key ├── gitlab.key ├── nodesource.key └── vbox.key ├── index.js ├── lib ├── cli.js ├── config.js ├── env.js ├── install.js ├── npmrc.js ├── reg.js ├── spawn.js ├── sudo.js └── update.js ├── package.json └── test ├── env.js ├── install.js ├── mirror.js └── npmrc.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.github/workflows/node_win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/.github/workflows/node_win.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/README.md -------------------------------------------------------------------------------- /gpg/docker.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/gpg/docker.key -------------------------------------------------------------------------------- /gpg/gitlab.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/gpg/gitlab.key -------------------------------------------------------------------------------- /gpg/nodesource.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/gpg/nodesource.key -------------------------------------------------------------------------------- /gpg/vbox.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/gpg/vbox.key -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/index.js -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/lib/env.js -------------------------------------------------------------------------------- /lib/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/lib/install.js -------------------------------------------------------------------------------- /lib/npmrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/lib/npmrc.js -------------------------------------------------------------------------------- /lib/reg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/lib/reg.js -------------------------------------------------------------------------------- /lib/spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/lib/spawn.js -------------------------------------------------------------------------------- /lib/sudo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/lib/sudo.js -------------------------------------------------------------------------------- /lib/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/lib/update.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/package.json -------------------------------------------------------------------------------- /test/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/test/env.js -------------------------------------------------------------------------------- /test/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/test/install.js -------------------------------------------------------------------------------- /test/mirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/test/mirror.js -------------------------------------------------------------------------------- /test/npmrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gucong3000/mirror-config-china/HEAD/test/npmrc.js --------------------------------------------------------------------------------