Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
node_modules /
pacote /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
node_modules
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
extract.js
2.99
KB
-rw-r--r--
2023-02-16 16:16
index.js
262
B
-rw-r--r--
2023-02-16 16:16
manifest.js
1.12
KB
-rw-r--r--
2023-02-16 16:16
package.json
3.35
KB
-rw-r--r--
2023-02-16 16:16
packument.js
822
B
-rw-r--r--
2023-02-16 16:16
prefetch.js
1.93
KB
-rw-r--r--
2023-02-16 16:16
tarball.js
1.97
KB
-rw-r--r--
2023-02-16 16:16
Save
Rename
'use strict' const fetchManifest = require('./lib/fetch').manifest const finalizeManifest = require('./lib/finalize-manifest') const optCheck = require('./lib/util/opt-check') const pinflight = require('promise-inflight') const npa = require('npm-package-arg') module.exports = manifest function manifest (spec, opts) { opts = optCheck(opts) spec = npa(spec, opts.where) const label = [ spec.name, spec.saveSpec || spec.fetchSpec, spec.type, opts.cache, opts.registry, opts.scope ].join(':') return pinflight(label, () => { const startTime = Date.now() return fetchManifest(spec, opts).then(rawManifest => { return finalizeManifest(rawManifest, spec, opts) }).then(manifest => { if (opts.annotate) { manifest._from = spec.saveSpec || spec.raw manifest._requested = spec manifest._spec = spec.raw manifest._where = opts.where } const elapsedTime = Date.now() - startTime opts.log.silly('pacote', `${spec.type} manifest for ${spec.name}@${spec.saveSpec || spec.fetchSpec} fetched in ${elapsedTime}ms`) return manifest }) }) }