From 4125af8ae4a47744ecda90b24e3ca82889e356a2 Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Sat, 5 May 2018 11:02:17 +0200 Subject: [PATCH] docs(website): update verdaccio introduction add svg files as helpers --- docs/docker.md | 2 + docs/install.md | 2 + docs/what-is-verdaccio.md | 62 ++++++++++++++++-------- website/pages/en/index.js | 2 +- website/static/svg/docker_verdaccio.svg | 1 + website/static/svg/install_verdaccio.svg | 1 + website/static/svg/npm_install.svg | 1 + website/static/svg/verdaccio_server.svg | 1 + website/static/svg/verdaccio_server1.svg | 1 + 9 files changed, 52 insertions(+), 21 deletions(-) create mode 100644 website/static/svg/docker_verdaccio.svg create mode 100644 website/static/svg/install_verdaccio.svg create mode 100644 website/static/svg/npm_install.svg create mode 100644 website/static/svg/verdaccio_server.svg create mode 100644 website/static/svg/verdaccio_server1.svg diff --git a/docs/docker.md b/docs/docker.md index bbcf902b0..f4d0dfc47 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -15,6 +15,8 @@ To pull the latest pre-built [docker image](https://hub.docker.com/r/verdaccio/v docker pull verdaccio/verdaccio ``` +![Docker pull](/svg/docker_verdaccio.svg) + ## Tagged Versions Since version `v2.x` you can pull docker images by [tag](https://hub.docker.com/r/verdaccio/verdaccio/tags/), as follows: diff --git a/docs/install.md b/docs/install.md index 21e1969dd..b70c1b203 100644 --- a/docs/install.md +++ b/docs/install.md @@ -28,6 +28,8 @@ or using `yarn` yarn global add verdaccio ``` +![install verdaccio](/svg/install_verdaccio.svg) + ### Beta ⚠️⚠️ **Help us to test the version 3.x in order to release a stable version soon. Remember, to do never test with your original storage folder, do always a backup** ⚠️⚠️ diff --git a/docs/what-is-verdaccio.md b/docs/what-is-verdaccio.md index 1795028a6..4cf62eedf 100644 --- a/docs/what-is-verdaccio.md +++ b/docs/what-is-verdaccio.md @@ -3,7 +3,47 @@ id: what-is-verdaccio title: "What is Verdaccio?" --- -## In a nutshell +Verdaccio is a **lightweight private npm proxy registry** built in **Node.js** + +## What's a registry + +* A repository for packages that implements the **CommonJS Compliant Package Registry specification** for reading package info +* Provide an API compatible with npm clients **(yarn/npm/pnpm)** +* Follow the semantic Versioning compatible **(semver)** + +``` +$> verdaccio +``` + +![registry](/svg/verdaccio_server.svg) + +## Using Verdaccio + +Using verdaccio with any node package manager client is straightforward + +![registry](/svg/npm_install.svg) + +either globally for all your projects + +``` +npm set registry http://localhost:4873 +``` + +or by command line + +``` +npm install lodash --registry http://localhost:4873 +``` + +## Private + +All packages you publish are private packages and oly accesible based in your configuration. + +## Proxy + +Verdaccio cache all dependencies by demand and speed up installations in local or private networks. + +## Verdaccio in a nutshell * It's a web app based on Node.js * It's a private npm registry @@ -12,24 +52,6 @@ title: "What is Verdaccio?" * It's a fairly easy install and use * We offer Docker and Kubernetes support * It is 100% compatible with yarn, npm and pnpm -* It was born based on `sinopia@1.4.0` fork and *backward compatible* +* It was **forked** based on `sinopia@1.4.0` fork and 100% **backward compatible**. * Verdaccio means **A green color popular in late medieval Italy for fresco painting**. -## What's a registry - -* A repository for packages that implements the CommonJS Compliant Package Registry specification for reading package info -* Store npm packages -* Provide an API compatible with npm clients -* Semantic Versioning (semver) compatible - -```bash -curl -v https://registry.npmjs.org/aaa - -* Connected to registry.npmjs.org (151.101.12.162) port 443 (#0) - -* Connection #0 to host registry.npmjs.org left intact -{"_id":"aaa","_rev":"6-ad86dfc8720569871753b5bf561f2741","name":"aaa","description":"aaa...","dist-tags":{"latest":"0.0.2"},"versions":{"0.0.1":{"name":"aaa","version":"0.0.1","description":"aaa...","main":"index.js","scripts":{"test":"test.js"},"repository":{"type":"git","url":"http:/www.google.git"},"keywords":["math"],"author":{"name":"peter"},"license":"BSD","_id":"aaa@0.0.1","dist": -{"shasum":"a04fa88ad887a70dd5429652ce23823619dfd7c3","tarball":"https://registry.npmjs.org/aaa/-/aaa-0.0.1.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"erhu65","email":"erhu65@gmail.com"},"maintainers":[{"name":"erhu65","email":"erhu65@gmail.com"}],"directories":{}},"0.0.2":{"name":"aaa","version":"0.0.2","description":"aaa...","main":"index.js","scripts":{"test":"test.js"},"repository":{"type":"git","url":"http:/www.google.git"},"keywords":["math"],"author":{"name":"peter"},"license":"BSD","_id":"aaa@0.0.2","dist": -{"shasum":"acd2f632b94b0f89765e75bb7b7549ce5b01caa2","tarball":"https://registry.npmjs.org/aaa/-/aaa-0.0.2.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"erhu65","email":"erhu65@gmail.com"},"maintainers":[{"name":"erhu65","email":"erhu65@gmail.com"}],"directories":{}}},"readme":"ERROR: No README.md file found!","maintainers":[{"name":"erhu65","email":"erhu65@gmail.com"}],"timmacbook-j:verdaccio.mmacbookmacbook-j:verdaccio.master.git jpicmacbook-j:verdaccio.master.git jpicmacbookmacbookmacbookmacbookmacbook -```` - diff --git a/website/pages/en/index.js b/website/pages/en/index.js index 3ab8a0fdc..6f4f5a557 100755 --- a/website/pages/en/index.js +++ b/website/pages/en/index.js @@ -56,7 +56,7 @@ class HomeSplash extends React.Component { siteConfig.baseUrl + 'docs/' + this.props.language + - '/installation.html' + '/what-is-verdaccio.html' }> Get Started diff --git a/website/static/svg/docker_verdaccio.svg b/website/static/svg/docker_verdaccio.svg new file mode 100644 index 000000000..c1494fdf7 --- /dev/null +++ b/website/static/svg/docker_verdaccio.svg @@ -0,0 +1 @@ +~on🐳v18.05.0-ce-rc1dockerdockerpulldockerpullverdaccio/verdaccioUsingdefaulttag:latestlatest:Pullingfromverdaccio/verdacciob56ae66c2937:Pullingfslayer2e6ecb529483:Pullingfslayer91160f709a96:Pullingfslayerd103554e98ef:Pullingfslayer2c94e54775e8:Pullingfslayer49a66eb92c69:Pullingfslayer29541e8ca26b:Pullingfslayere3d7b7b31415:Pullingfslayer6eb1bf8a85ac:Waitinge3e3c5d6b6e1:Waitingd103554e98ef:Waiting2c94e54775e8:Waiting49a66eb92c69:Waiting29541e8ca26b:Waitinge3d7b7b31415:Waitingb56ae66c2937:Downloading32.26kB/1.991MB91160f709a96:Downloading16.38kB/1.016MBb56ae66c2937:Downloading556.2kB/1.991MB91160f709a96:Downloading341.7kB/1.016MBb56ae66c2937:Downloading1.146MB/1.991MB91160f709a96:Downloadcomplete2e6ecb529483:Downloading199.6kB/19.58MBb56ae66c2937:Extracting32.77kB/1.991MB2e6ecb529483:Downloading801.6kB/19.58MBb56ae66c2937:Extracting1.991MB/1.991MB2e6ecb529483:Downloading1.604MB/19.58MBb56ae66c2937:Pullcomplete2e6ecb529483:Downloading7.363MB/19.58MBe3e3c5d6b6e1:Downloadcomplete6eb1bf8a85ac:Downloadcomplete2e6ecb529483:Downloadcomplete2e6ecb529483:Extracting196.6kB/19.58MBd103554e98ef:Downloading81.02kB/7.325MB2e6ecb529483:Extracting393.2kB/19.58MBd103554e98ef:Downloading487.3kB/7.325MB2e6ecb529483:Extracting5.112MB/19.58MBd103554e98ef:Downloading979.2kB/7.325MB2e6ecb529483:Extracting6.881MB/19.58MBd103554e98ef:Downloading1.635MB/7.325MB2e6ecb529483:Extracting8.454MB/19.58MBd103554e98ef:Downloading2.29MB/7.325MB2c94e54775e8:Downloading530.2kB/73.34MB2e6ecb529483:Extracting9.634MB/19.58MBd103554e98ef:d103554e98ef:Downloading3.114MB/7.325MB49a66eb92c69:Downloadcomplete2c94e54775e8:Downloading1.071MB/73.34MBd103554e98ef:Downloading4.097MB/7.325MB2e6ecb529483:Extracting10.42MB/19.58MBd103554e98ef:Downloading5.147MB/7.325MB2e6ecb529483:Extracting11.99MB/19.58MB2c94e54775e8:Downloading1.612MB/73.34MBd103554e98ef:Downloading6.127MB/7.325MB2c94e54775e8:Downloading2.152MB/73.34MB2e6ecb529483:Extracting13.37MB/19.58MBd103554e98ef:Downloadcomplete2c94e54775e8:Downloading2.693MB/73.34MB2e6ecb529483:Extracting14.16MB/19.58MB2c94e54775e8:Downloading4.291MB/73.34MB2e6ecb529483:Extracting14.75MB/19.58MB2c94e54775e8:Downloading5.904MB/73.34MB2e6ecb529483:Extracting15.14MB/19.58MB2c94e54775e8:Downloading7.503MB/73.34MB2e6ecb529483:Extracting15.53MB/19.58MB2c94e54775e8:Downloading10.72MB/73.34MB2e6ecb529483:Extracting15.73MB/19.58MB2c94e54775e8:Downloading12.3MB/73.34MB2e6ecb529483:Extracting15.93MB/19.58MB2c94e54775e8:Downloading13.89MB/73.34MBe3d7b7b31415:Downloading142.6kB/14.04MB29541e8ca26b:Downloading353B/931B2e6ecb529483:Extracting16.12MB/19.58MB29541e8ca26b:Downloadcomplete2c94e54775e8:2c94e54775e8:Downloading15.48MB/73.34MBe3d7b7b31415:Downloading285.4kB/14.04MB2c94e54775e8:Downloading17.06MB/73.34MB2e6ecb529483:Extracting16.71MB/19.58MBe3d7b7b31415:Downloading430.2kB/14.04MB2c94e54775e8:Downloading18.67MB/73.34MB2e6ecb529483:Extracting17.3MB/19.58MB2c94e54775e8:Downloading20.28MB/73.34MBe3d7b7b31415:Downloading573.4kB/14.04MB2e6ecb529483:Extracting17.5MB/19.58MB2c94e54775e8:Downloading21.88MB/73.34MB2e6ecb529483:Extracting17.89MB/19.58MBe3d7b7b31415:Downloading725.2kB/14.04MB2c94e54775e8:Downloading23.5MB/73.34MB2e6ecb529483:Extracting18.28MB/19.58MBe3d7b7b31415:Downloading871.9kB/14.04MB2e6ecb529483:Extracting19.07MB/19.58MB2c94e54775e8:Downloading25.11MB/73.34MBe3d7b7b31415:Downloading1.021MB/14.04MB2e6ecb529483:Extracting19.58MB/19.58MB2c94e54775e8:Downloading26.72MB/73.34MBe3d7b7b31415:Downloading1.166MB/14.04MB2c94e54775e8:Downloading28.33MB/73.34MB2e6ecb529483:Pullcomplete91160f709a96:Extracting32.77kB/1.016MB2c94e54775e8:Downloading29.92MB/73.34MBe3d7b7b31415:Downloading1.313MB/14.04MB91160f709a96:Extracting229.4kB/1.016MB2c94e54775e8:Downloading31.51MB/73.34MBe3d7b7b31415:Downloading1.461MB/14.04MB91160f709a96:Extracting1.016MB/1.016MBe3d7b7b31415:Downloading1.608MB/14.04MB91160f709a96:Pullcomplete6eb1bf8a85ac:Extracting33.06kB/33.06kB2c94e54775e8:Downloading34.7MB/73.34MB6eb1bf8a85ac:Pullcompletee3e3c5d6b6e1:Extracting135B/135Be3d7b7b31415:Downloading1.898MB/14.04MB2c94e54775e8:Downloading36.3MB/73.34MBe3e3c5d6b6e1:Pullcompleted103554e98ef:Extracting98.3kB/7.325MBe3d7b7b31415:Downloading2.193MB/14.04MB2c94e54775e8:Downloading37.9MB/73.34MBd103554e98ef:Extracting884.7kB/7.325MB2c94e54775e8:Downloading39.5MB/73.34MBe3d7b7b31415:Downloading2.488MB/14.04MBd103554e98ef:Extracting1.868MB/7.325MB2c94e54775e8:Downloading41.12MB/73.34MBe3d7b7b31415:Downloading2.783MB/14.04MBd103554e98ef:Extracting2.163MB/7.325MB2c94e54775e8:Downloading42.72MB/73.34MBe3d7b7b31415:Downloading3.078MB/14.04MBd103554e98ef:Extracting2.359MB/7.325MB2c94e54775e8:Downloading44.33MB/73.34MBe3d7b7b31415:Downloading3.373MB/14.04MBd103554e98ef:Extracting2.654MB/7.325MB2c94e54775e8:Downloading45.93MB/73.34MBe3d7b7b31415:Downloading3.668MB/14.04MB2c94e54775e8:Downloading47.54MB/73.34MBd103554e98ef:Extracting3.047MB/7.325MBe3d7b7b31415:Downloading3.962MB/14.04MB2c94e54775e8:Downloading49.13MB/73.34MBd103554e98ef:Extracting3.146MB/7.325MBe3d7b7b31415:Downloading4.405MB/14.04MBd103554e98ef:Extracting3.441MB/7.325MBe3d7b7b31415:Downloading4.552MB/14.04MB2c94e54775e8:Downloading50.2MB/73.34MBd103554e98ef:Extracting3.539MB/7.325MBe3d7b7b31415:Downloading5.141MB/14.04MB2c94e54775e8:Downloading52.87MB/73.34MBe3d7b7b31415:Downloading5.584MB/14.04MB2c94e54775e8:Downloading54.48MB/73.34MBd103554e98ef:Extracting3.932MB/7.325MBe3d7b7b31415:Downloading6.026MB/14.04MBd103554e98ef:Extracting4.227MB/7.325MB2c94e54775e8:Downloading56.08MB/73.34MBe3d7b7b31415:Downloading6.468MB/14.04MBd103554e98ef:Extracting4.719MB/7.325MB2c94e54775e8:Downloading57.68MB/73.34MBe3d7b7b31415:Downloading6.907MB/14.04MBd103554e98ef:Extracting4.915MB/7.325MB2c94e54775e8:Downloading59.29MB/73.34MBe3d7b7b31415:Downloading7.497MB/14.04MBd103554e98ef:Extracting5.112MB/7.325MBe3d7b7b31415:Downloading7.939MB/14.04MB2c94e54775e8:Downloading60.88MB/73.34MBd103554e98ef:Extracting5.603MB/7.325MBe3d7b7b31415:Downloading8.525MB/14.04MB2c94e54775e8:Downloading62.48MB/73.34MBd103554e98ef:Extracting6.193MB/7.325MBe3d7b7b31415:Downloading8.973MB/14.04MBd103554e98ef:Extracting6.586MB/7.325MB2c94e54775e8:Downloading64.07MB/73.34MBe3d7b7b31415:Downloading9.568MB/14.04MBd103554e98ef:Extracting7.176MB/7.325MB2c94e54775e8:Downloading65.15MB/73.34MBd103554e98ef:Extracting7.325MB/7.325MBe3d7b7b31415:Downloading10.17MB/14.04MB2c94e54775e8:Downloading66.21MB/73.34MBe3d7b7b31415:Downloading10.76MB/14.04MB2c94e54775e8:Downloading67.27MB/73.34MBe3d7b7b31415:Downloading11.22MB/14.04MB2c94e54775e8:Downloading69.39MB/73.34MBe3d7b7b31415:Downloading12.55MB/14.04MB2c94e54775e8:Downloading70.47MB/73.34MBd103554e98ef:Pullcompletee3d7b7b31415:Downloading13.43MB/14.04MB2c94e54775e8:Downloading72.06MB/73.34MBe3d7b7b31415:Downloadcomplete2c94e54775e8:Extracting23.95MB/73.34MB2c94e54775e8:Pullcomplete49a66eb92c69:Extracting138B/138B49a66eb92c69:Pullcomplete29541e8ca26b:Extracting931B/931B29541e8ca26b:Pullcompletee3d7b7b31415:PullcompleteDigest:sha256:122111476bf8e6f397de4babb3cd45390b3d3ecc8bd60ec385d01bafd4ce358fStatus:Downloadednewerimageforverdaccio/verdaccio:latest~on🐳v18.05.0-ce-rc1took25sddodocdockdockedockerpdockerpudockerpuldockerpullvdockerpullvedockerpullverdockerpullverddockerpullverdadockerpullverdacdockerpullverdaccdockerpullverdaccidockerpullverdacciodockerpullverdaccio/dockerpullverdaccio/vdockerpullverdaccio/vedockerpullverdaccio/verdockerpullverdaccio/verddockerpullverdaccio/verdadockerpullverdaccio/verdacdockerpullverdaccio/verdaccdockerpullverdaccio/verdacci6eb1bf8a85ac:Pullingfslayere3e3c5d6b6e1:Pullingfslayer91160f709a96:Downloading816.8kB/1.016MB91160f709a96:VerifyingChecksumb56ae66c2937:Downloading1.932MB/1.991MBb56ae66c2937:Downloadcompleteb56ae66c2937:Extracting655.4kB/1.991MB2e6ecb529483:Downloading2.809MB/19.58MB2e6ecb529483:Downloading4.209MB/19.58MB2e6ecb529483:Downloading5.791MB/19.58MB6eb1bf8a85ac:Downloading16.38kB/33.06kB6eb1bf8a85ac:VerifyingChecksum2e6ecb529483:Downloading8.944MB/19.58MB2e6ecb529483:Downloading10.52MB/19.58MB2e6ecb529483:Downloading12.09MB/19.58MB2e6ecb529483:Downloading13.68MB/19.58MB2e6ecb529483:Downloading15.26MB/19.58MB2e6ecb529483:Downloading16.84MB/19.58MB2e6ecb529483:Downloading18.43MB/19.58MB2e6ecb529483:Extracting2.556MB/19.58MB49a66eb92c69:Downloading138B/138B49a66eb92c69:VerifyingChecksumd103554e98ef:Downloading7.191MB/7.325MBd103554e98ef:VerifyingChecksum2e6ecb529483:2c94e54775e8:Downloading9.11MB/73.34MB29541e8ca26b:Downloading931B/931B6eb1bf8a85ac:Extracting32.77kB/33.06kB2c94e54775e8:Downloading33.1MB/73.34MB2c94e54775e8:Downloading68.32MB/73.34MBe3d7b7b31415:Downloading12.11MB/14.04MBe3d7b7b31415:Downloading14.02MB/14.04MBe3d7b7b31415:VerifyingChecksum2c94e54775e8:VerifyingChecksum2c94e54775e8:Downloadcomplete2c94e54775e8:Extracting557.1kB/73.34MB2c94e54775e8:Extracting2.228MB/73.34MB2c94e54775e8:Extracting3.342MB/73.34MB2c94e54775e8:Extracting4.456MB/73.34MB2c94e54775e8:Extracting6.128MB/73.34MB2c94e54775e8:Extracting7.242MB/73.34MB2c94e54775e8:Extracting7.799MB/73.34MB2c94e54775e8:Extracting9.47MB/73.34MB2c94e54775e8:Extracting11.7MB/73.34MB2c94e54775e8:Extracting13.37MB/73.34MB2c94e54775e8:Extracting14.48MB/73.34MB2c94e54775e8:Extracting15.04MB/73.34MB2c94e54775e8:Extracting16.15MB/73.34MB2c94e54775e8:Extracting17.27MB/73.34MB2c94e54775e8:Extracting19.5MB/73.34MB2c94e54775e8:Extracting20.61MB/73.34MB2c94e54775e8:Extracting21.73MB/73.34MB2c94e54775e8:Extracting22.84MB/73.34MB2c94e54775e8:Extracting25.07MB/73.34MB2c94e54775e8:Extracting26.18MB/73.34MB2c94e54775e8:Extracting26.74MB/73.34MB2c94e54775e8:Extracting27.85MB/73.34MB2c94e54775e8:Extracting29.52MB/73.34MB2c94e54775e8:Extracting30.64MB/73.34MB2c94e54775e8:Extracting31.75MB/73.34MB2c94e54775e8:Extracting32.31MB/73.34MB2c94e54775e8:Extracting33.98MB/73.34MB2c94e54775e8:Extracting36.21MB/73.34MB2c94e54775e8:Extracting36.77MB/73.34MB2c94e54775e8:Extracting37.32MB/73.34MB2c94e54775e8:Extracting38.99MB/73.34MB2c94e54775e8:Extracting40.67MB/73.34MB2c94e54775e8:Extracting41.22MB/73.34MB2c94e54775e8:Extracting42.34MB/73.34MB2c94e54775e8:Extracting42.89MB/73.34MB2c94e54775e8:Extracting45.12MB/73.34MB2c94e54775e8:Extracting46.24MB/73.34MB2c94e54775e8:Extracting46.79MB/73.34MB2c94e54775e8:Extracting48.46MB/73.34MB2c94e54775e8:Extracting49.58MB/73.34MB2c94e54775e8:Extracting50.69MB/73.34MB2c94e54775e8:Extracting52.36MB/73.34MB2c94e54775e8:Extracting53.48MB/73.34MB2c94e54775e8:Extracting56.82MB/73.34MB2c94e54775e8:Extracting57.38MB/73.34MB2c94e54775e8:Extracting58.49MB/73.34MB2c94e54775e8:Extracting59.05MB/73.34MB2c94e54775e8:Extracting60.72MB/73.34MB2c94e54775e8:Extracting61.83MB/73.34MB2c94e54775e8:Extracting62.95MB/73.34MB2c94e54775e8:Extracting64.62MB/73.34MB2c94e54775e8:Extracting66.29MB/73.34MB2c94e54775e8:Extracting67.96MB/73.34MB2c94e54775e8:Extracting69.07MB/73.34MB2c94e54775e8:Extracting69.63MB/73.34MB2c94e54775e8:Extracting70.75MB/73.34MB2c94e54775e8:Extracting71.86MB/73.34MB2c94e54775e8:Extracting72.97MB/73.34MB2c94e54775e8:Extracting73.34MB/73.34MB29541e8ca26b:e3d7b7b31415:Extracting163.8kB/14.04MBe3d7b7b31415:Extracting1.311MB/14.04MBe3d7b7b31415:Extracting2.13MB/14.04MBe3d7b7b31415:Extracting2.458MB/14.04MBe3d7b7b31415:Extracting3.768MB/14.04MBe3d7b7b31415:Extracting4.751MB/14.04MBe3d7b7b31415:Extracting5.243MB/14.04MBe3d7b7b31415:Extracting5.898MB/14.04MBe3d7b7b31415:Extracting6.881MB/14.04MBe3d7b7b31415:Extracting7.7MB/14.04MBe3d7b7b31415:Extracting8.847MB/14.04MBe3d7b7b31415:Extracting9.175MB/14.04MBe3d7b7b31415:e3d7b7b31415:Extracting9.83MB/14.04MBe3d7b7b31415:Extracting10.32MB/14.04MBe3d7b7b31415:Extracting10.65MB/14.04MBe3d7b7b31415:Extracting11.3MB/14.04MBe3d7b7b31415:Extracting11.63MB/14.04MBe3d7b7b31415:Extracting12.29MB/14.04MBe3d7b7b31415:Extracting13.6MB/14.04MBe3d7b7b31415:Extracting14.04MB/14.04MB \ No newline at end of file diff --git a/website/static/svg/install_verdaccio.svg b/website/static/svg/install_verdaccio.svg new file mode 100644 index 000000000..1fd589717 --- /dev/null +++ b/website/static/svg/install_verdaccio.svg @@ -0,0 +1 @@ +~on🐳v18.05.0-ce-rc1npmnpminstallnpminstall-gnpminstall-gverdaccio░░░░░░░░░░░░░░░░░░rollbackFailedOptional:0verbnpm-sessionf35e8f28d8ff9░░░░░░░░░░░░░░░░░░rollbackFailedOptional:0verbnpm-sessionf35e8f28d8ff9░░░░░░░░░░░░░░░░░░fetchMetadata:sillremoveObsoleteDepremovingunix-cr░░░░░░░░░░░░░░░░░░fetchMetadata:sillremoveObsoleteDepremovingunix-cr░░░░░░░░░░░░░░░░░░fetchMetadata:sillremoveObsoleteDepremovingunix-cr░░░░░░░░░░░░░░░░░░fetchMetadata:sillremoveObsoleteDepremovingunix-cr░░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleregenerator-r░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleminimist@0.0.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulewrappy@1.0.2░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleescape-string░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulehas-flag@3.0.░░░░░░░░░░░░░░░░░loadDep:vary:sillresolveWithNewModuleobject-assign@░░░░░░░░░░░░░░░░░loadDep:vary:sillresolveWithNewModuleobject-assign@░░░░░░░░░░░░░░░░░loadDep:minimist:sillresolveWithNewModulesource-map░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleyargs@3.10.0░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulewindow-size@0░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulesprintf-js@1.░░░░░░░░░░░░░░░░loadDep:safe-buffer:sillresolveWithNewModulehoek@2.░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulesignal-exit@3░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleajv@5.5.2che░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulehoek@4.2.1ch░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulesshpk@1.14.1░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulecore-util-is@░░░░░░░░░░░extract:verdaccio:0verblockusing/Users/jpicado/.npm░░░░░░░░░░░extract:setprototypeof:sillextractverdaccio@2.7.4░░░░░░░░░░░extract:statuses:sillextractverdaccio@2.7.4░░░░░░░░░░extract:serve-static:sillextractverdaccio@2.7.4░░░░░░░░░░extract:commander:sillextractverdaccio@2.7.4░░░░░░░░░░extract:regenerator-runtime:sillextractverdaccio@2.░░░░░░░░░extract:send:sillextractverdaccio@2.7.4░░░░░░░░extract:chalk:sillextractverdaccio@2.7.4░░░░░░░░extract:hoek:sillextractverdaccio@2.7.4░░░░░░░░extract:depd:sillextractverdaccio@2.7.4░░░░░░░extract:isemail:sillextractverdaccio@2.7.4░░░░░░░extract:babel-polyfill:sillextractverdaccio@2.7.4░░░░░░░extract:express:sillextractverdaccio@2.7.4░░░░░░░extract:joi:sillextractverdaccio@2.7.4░░░░░░░extract:babel-runtime:sillextractverdaccio@2.7.4░░░░░░░extract:jsonwebtoken:sillextractverdaccio@2.7.4░░░░░░extract:verdaccio:sillextractverdaccio@2.7.4░░░░░░extract:lodash:sillextractverdaccio@2.7.4░░░░░░remove:verdaccio:silldoSerialremove406░░░░░░remove:lodash:sillremove/Users/jpicado/.nvm/version░░░░░░remove:bcryptjs:sillremove/Users/jpicado/.nvm/versi░░░░░░remove:ms:sillremove/Users/jpicado/.nvm/versions/no░░░░░░remove:request:sillremove/Users/jpicado/.nvm/versio/Users/jpicado/.nvm/versions/node/v9.9.0/bin/verdaccio->/Users/jpicado/.nvm/versions/node/v9.9.0/lib/node_modules/verdaccio/bin/verdaccio+verdaccio@2.7.4added17packagesfrom9contributors,removed15packagesandupdated24packagesin24.275s~on🐳v18.05.0-ce-rc1took25snnpnpminpminnpminsnpminstnpminstanpminstalnpminstall-npminstall-gvnpminstall-gvenpminstall-gvernpminstall-gverdnpminstall-gverdanpminstall-gverdacnpminstall-gverdaccnpminstall-gverdacci░░░░░░░░░░░░░░░░░░rollbackFailedOptional:0verbnpm-sessionf35e8f28d8ff9░░░░░░░░░░░░░░░░░░loadIdealTree:loadAllDepsIntoIdealTree:sillinstalll░░░░░░░░░░░░░░░░░░fetchMetadata:sillremoveObsoleteDepremovingunix-cr░░░░░░░░░░░░░░░░░░fetchMetadata:sillremoveObsoleteDepremovingunix-cr░░░░░░░░░░░░░░░░░░fetchMetadata:sillremoveObsoleteDepremovingunix-cr░░░░░░░░░░░░░░░░░░loadDep:lodash:sillresolveWithNewModule@verdaccio/s░░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulebabel-polyfil░░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulebabel-polyfil░░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleregenerator-r░░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleraw-body@2.3.░░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulems@2.0.0chec░░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulems@2.0.0chec░░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleinherits@2.0.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleee-first@1.1.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulesetprototypeo░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulesetprototypeo░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulemime-types@2.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulemime-db@1.33.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulemime-db@1.33.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulemoment@2.22.1░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulenan@2.10.0ch░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulencp@2.0.0che░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleglob@6.0.4ch░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulepath-is-absol░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulebrace-expansi░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleconcat-map@0.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleconcat-map@0.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulecolor-convert░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulecolor-name@1.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulehas-flag@3.0.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulevary@1.1.2ch░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulenegotiator@0.░░░░░░░░░░░░░░░░░loadDep:vary:sillresolveWithNewModulekeygrip@1.0.2░░░░░░░░░░░░░░░░░loadDep:vary:sillresolveWithNewModuleobject-assign@░░░░░░░░░░░░░░░░░loadDep:vary:sillresolveWithNewModuleobject-assign@░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulestatuses@1.4.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleipaddr.js@1.6░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuledestroy@1.0.4░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleprocess@0.5.2░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleprocess@0.5.2░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuledom-walk@0.1.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulewordwrap@0.0.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleamdefine@1.0.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulecenter-align@░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulelazy-cache@1.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulelazy-cache@1.░░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulerepeat-string░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleis-buffer@1.1░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleesprima@4.0.0░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulethrough@2.3.8░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulethrough@2.3.8░░░░░░░░░░░░░░░░loadDep:moment:sillresolveWithNewModulextend@4.0.1░░░░░░░░░░░░░░░░loadDep:safe-buffer:sillresolveWithNewModulejwa@1.1░░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleecdsa-sig-for░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulesignal-exit@3░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulesignal-exit@3░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuletunnel-agent@░░░░░░░░░░░░░░░loadDep:mime-types:sillresolveWithNewModuledelayed-░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleasynckit@0.4.░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModuleajv@5.5.2che░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulejson-schema-t░░░░░░░░░░░░░░░loadDep:extsprintf:sillresolveWithNewModuleextsprin░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulecore-util-is@░░░░░░░░░░░░░░░fetchMetadata:sillresolveWithNewModulegetpass@0.1.7░░░░░░░░░░░░diffTrees:sillinstallgenerateActionsToTake░░░░░░░░░░extract:@verdaccio/streams:sillextractverdaccio@2.7░░░░░░░░░░extract:setprototypeof:sillextractverdaccio@2.7.4░░░░░░░░░extract:http-errors:sillextractverdaccio@2.7.4░░░░░░░░░extract:@verdaccio/file-locking:sillextractverdacci░░░░░░░░░extract:lockfile:sillextractverdaccio@2.7.4░░░░░░░░extract:lockfile:sillextractverdaccio@2.7.4░░░░░░░extract:request:sillextractverdaccio@2.7.4░░░░░░░extract:marked:sillextractverdaccio@2.7.4░░░░░░░extract:lunr:sillextractverdaccio@2.7.4░░░░░░extract:handlebars:sillextractverdaccio@2.7.4░░░░░░unbuild:lunr:infolifecyclelunr@0.7.0~postuninstall:░░░░░░remove:date-fns:sillremove/Users/jpicado/.nvm/versi░░░░░░remove:lodash.isstring:sillremove/Users/jpicado/.nv░░░░░░remove:express:sillremove/Users/jpicado/.nvm/versio░░░░░░finalize:request:sillfinalize/Users/jpicado/.nvm/ve░░░░░░refresh-package-json:verdaccio:0timingaction:finalize░░░░░░postinstall:verdaccio:infolifecycleverdaccio@2.7.4~ \ No newline at end of file diff --git a/website/static/svg/npm_install.svg b/website/static/svg/npm_install.svg new file mode 100644 index 000000000..3e0b5002c --- /dev/null +++ b/website/static/svg/npm_install.svg @@ -0,0 +1 @@ +projects/@verdaccio/test_installis📦v1.0.0viav9.9.0on🐳v18.05.0-ce-rc1npmnpminstallnpminstalllodashnpminstalllodash--registryhttp://localhost:4873░░░░░░░░░░░░░░░░░░rollbackFailedOptional:0verbnpm-session3be12038cd028ddc░░░░░░░░░░░extract:lodash:0verblockusing/Users/jpicado/.npm/_locks/staging-70npmWARN0npmWARNtest_install@1.0.0Nodescription0npmWARNtest_install@1.0.0Norepositoryfield.+lodash@4.17.10added1packagefrom2contributorsin6.323sprojects/@verdaccio/test_installis📦v1.0.0viav9.9.0on🐳v18.05.0-ce-rc1took7snnpnpminpminnpminsnpminstnpminstanpminstalnpminstalllnpminstalllonpminstalllodnpminstalllodanpminstalllodasnpminstalllodash--registry http://localhost:4873░░░░░░░░░░░░░░░░░░rollbackFailedOptional:0verbnpm-session3be12038cd028ddc░░░░░░░░░░░postinstall:sillinstallexecuteActions░░░░░░refresh-package-json:lodash:0timingaction:finalizeCompletedin5ms0npm \ No newline at end of file diff --git a/website/static/svg/verdaccio_server.svg b/website/static/svg/verdaccio_server.svg new file mode 100644 index 000000000..41ef2c4ba --- /dev/null +++ b/website/static/svg/verdaccio_server.svg @@ -0,0 +1 @@ +~on🐳v18.05.0-ce-rc1verdacciowarn---configfile-/Users/jpicado/.config/verdaccio/config.yamlwarn---httpaddress-http://localhost:4873/-verdaccio/2.7.4http-->304,req:'GEThttps://registry.npmjs.org/webpack'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/webpack',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/webpack',bytes:0/69691http-->304,req:'GEThttps://registry.npmjs.org/acorn-dynamic-import'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/acorn-dynamic-import',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/acorn-dynamic-import',bytes:0/2756http-->304,req:'GEThttps://registry.npmjs.org/acorn'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/acorn',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/ajv-keywords'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/ajv-keywords',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/eslint-scope'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/eslint-scope',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/chrome-trace-event'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/chrome-trace-event',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/loader-runner'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/loader-runner',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/enhanced-resolve'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/enhanced-resolve',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/loader-utils'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/loader-utils',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/ajv'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/ajv',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/memory-fs'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/memory-fs',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/ajv-keywords',bytes:0/11883http<--200,user:undefined(127.0.0.1),req:'GET/acorn',bytes:0/21339http-->304,req:'GEThttps://registry.npmjs.org/micromatch'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/micromatch',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/eslint-scope',bytes:0/2264http<--200,user:undefined(127.0.0.1),req:'GET/chrome-trace-event',bytes:0/3578http<--200,user:undefined(127.0.0.1),req:'GET/enhanced-resolve',bytes:0/11574http<--200,user:undefined(127.0.0.1),req:'GET/loader-utils',bytes:0/7004http<--200,user:undefined(127.0.0.1),req:'GET/loader-runner',bytes:0/2197http<--200,user:undefined(127.0.0.1),req:'GET/memory-fs',bytes:0/1896http-->304,req:'GEThttps://registry.npmjs.org/mkdirp'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/mkdirp',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/micromatch',bytes:0/22550http<--200,user:undefined(127.0.0.1),req:'GET/ajv',bytes:0/54782http-->304,req:'GEThttps://registry.npmjs.org/neo-async'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/neo-async',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/mkdirp',bytes:0/3301http<--200,user:undefined(127.0.0.1),req:'GET/neo-async',bytes:0/12780http-->304,req:'GEThttps://registry.npmjs.org/node-libs-browser'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/node-libs-browser',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/schema-utils'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/schema-utils',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/tapable'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/tapable',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/uglifyjs-webpack-plugin'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/uglifyjs-webpack-plugin',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/watchpack'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/watchpack',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/webpack-sources'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/webpack-sources',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/node-libs-browser',bytes:0/5160http<--200,user:undefined(127.0.0.1),req:'GET/schema-utils',bytes:0/5329http<--200,user:undefined(127.0.0.1),req:'GET/tapable',bytes:0/6541http<--200,user:undefined(127.0.0.1),req:'GET/watchpack',bytes:0/6304http<--200,user:undefined(127.0.0.1),req:'GET/webpack-sources',bytes:0/5060http<--200,user:undefined(127.0.0.1),req:'GET/uglifyjs-webpack-plugin',bytes:0/14267http-->304,req:'GEThttps://registry.npmjs.org/fast-deep-equal'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/fast-deep-equal',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/json-schema-traverse'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/json-schema-traverse',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/fast-json-stable-stringify'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/fast-json-stable-stringify',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/uri-js'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/uri-js',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/fast-deep-equal',bytes:0/4021http<--200,user:undefined(127.0.0.1),req:'GET/fast-json-stable-stringify',bytes:0/2332http<--200,user:undefined(127.0.0.1),req:'GET/json-schema-traverse',bytes:0/2401http<--200,user:undefined(127.0.0.1),req:'GET/uri-js',bytes:0/6037http-->304,req:'GEThttps://registry.npmjs.org/punycode'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/punycode',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/punycode',bytes:0/5823http-->304,req:'GEThttps://registry.npmjs.org/graceful-fs'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/graceful-fs',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/graceful-fs',bytes:0/8424http-->304,req:'GEThttps://registry.npmjs.org/errno'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/errno',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/readable-stream'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/readable-stream',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/errno',bytes:0/4703http<--200,user:undefined(127.0.0.1),req:'GET/readable-stream',bytes:0/11767http-->304,req:'GEThttps://registry.npmjs.org/prr'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/prr',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/prr',bytes:0/1671http-->304,req:'GEThttps://registry.npmjs.org/inherits'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/inherits',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/core-util-is'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/core-util-is',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/safe-buffer'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/safe-buffer',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/process-nextick-args'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/process-nextick-args',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/isarray'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/isarray',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/string_decoder'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/string_decoder',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/util-deprecate'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/util-deprecate',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/inherits',bytes:0/2186http<--200,user:undefined(127.0.0.1),req:'GET/core-util-is',bytes:0/923http<--200,user:undefined(127.0.0.1),req:'GET/safe-buffer',bytes:0/9873http<--200,user:undefined(127.0.0.1),req:'GET/isarray',bytes:0/3311http<--200,user:undefined(127.0.0.1),req:'GET/process-nextick-args',bytes:0/1970http<--200,user:undefined(127.0.0.1),req:'GET/util-deprecate',bytes:0/1791http<--200,user:undefined(127.0.0.1),req:'GET/string_decoder',bytes:0/3607http-->304,req:'GEThttps://registry.npmjs.org/estraverse'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/estraverse',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/esrecurse'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/esrecurse',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/estraverse',bytes:0/5568http<--200,user:undefined(127.0.0.1),req:'GET/esrecurse',bytes:0/4597http-->304,req:'GEThttps://registry.npmjs.org/json5'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/json5',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/big.js'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/big.js',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/emojis-list'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/emojis-list',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/emojis-list',bytes:0/2668http<--200,user:undefined(127.0.0.1),req:'GET/json5',bytes:0/7882http<--200,user:undefined(127.0.0.1),req:'GET/big.js',bytes:0/6362http-->304,req:'GEThttps://registry.npmjs.org/array-unique'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/array-unique',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/arr-diff'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/arr-diff',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/define-property'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/define-property',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/braces'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/braces',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/extend-shallow'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/extend-shallow',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/fragment-cache'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/fragment-cache',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/kind-of'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/kind-of',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/nanomatch'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/nanomatch',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/extglob'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/extglob',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/array-unique',bytes:0/2596http<--200,user:undefined(127.0.0.1),req:'GET/define-property',bytes:0/4574http<--200,user:undefined(127.0.0.1),req:'GET/arr-diff',bytes:0/3955http<--200,user:undefined(127.0.0.1),req:'GET/extend-shallow',bytes:0/4381http<--200,user:undefined(127.0.0.1),req:'GET/fragment-cache',bytes:0/2790http<--200,user:undefined(127.0.0.1),req:'GET/braces',bytes:0/15098http<--200,user:undefined(127.0.0.1),req:'GET/kind-of',bytes:0/9491http-->304,req:'GEThttps://registry.npmjs.org/object.pick'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/object.pick',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/extglob',bytes:0/8431http<--200,user:undefined(127.0.0.1),req:'GET/nanomatch',bytes:0/15993http<--200,user:undefined(127.0.0.1),req:'GET/object.pick',bytes:0/3216http-->304,req:'GEThttps://registry.npmjs.org/snapdragon'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/snapdragon',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/regex-not'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/regex-not',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/regex-not',bytes:0/3509http<--200,user:undefined(127.0.0.1),req:'GET/snapdragon',bytes:0/14852http-->304,req:'GEThttps://registry.npmjs.org/to-regex'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/to-regex',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/to-regex',bytes:0/4433http-->304,req:'GEThttps://registry.npmjs.org/arr-flatten'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/arr-flatten',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/fill-range'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/fill-range',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/repeat-element'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/repeat-element',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/split-string'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/split-string',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/snapdragon-node'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/snapdragon-node',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/isobject'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/isobject',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/arr-flatten',bytes:0/3559http<--200,user:undefined(127.0.0.1),req:'GET/repeat-element',bytes:0/1690http<--200,user:undefined(127.0.0.1),req:'GET/fill-range',bytes:0/8019http<--200,user:undefined(127.0.0.1),req:'GET/split-string',bytes:0/7195http<--200,user:undefined(127.0.0.1),req:'GET/snapdragon-node',bytes:0/6317http<--200,user:undefined(127.0.0.1),req:'GET/isobject',bytes:0/3756http-->304,req:'GEThttps://registry.npmjs.org/is-extendable'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/is-extendable',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/is-extendable',bytes:0/3139http-->304,req:'GEThttps://registry.npmjs.org/is-number'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/is-number',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/repeat-string'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/repeat-string',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/to-regex-range'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/to-regex-range',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/is-number',bytes:0/5310http<--200,user:undefined(127.0.0.1),req:'GET/repeat-string',bytes:0/4595http<--200,user:undefined(127.0.0.1),req:'GET/to-regex-range',bytes:0/7354http-->304,req:'GEThttps://registry.npmjs.org/is-buffer'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/is-buffer',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/is-buffer',bytes:0/3769http-->304,req:'GEThttps://registry.npmjs.org/source-map'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/source-map',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/base'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/base',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/map-cache'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/map-cache',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/debug'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/debug',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/use'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/use',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/source-map-resolve'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/source-map-resolve',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/map-cache',bytes:0/2600http<--200,user:undefined(127.0.0.1),req:'GET/base',bytes:0/15343http<--200,user:undefined(127.0.0.1),req:'GET/source-map',bytes:0/17175http<--200,user:undefined(127.0.0.1),req:'GET/debug',bytes:0/13371http<--200,user:undefined(127.0.0.1),req:'GET/use',bytes:0/4186http<--200,user:undefined(127.0.0.1),req:'GET/source-map-resolve',bytes:0/5437http-->304,req:'GEThttps://registry.npmjs.org/class-utils'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/class-utils',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/pascalcase'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/pascalcase',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/component-emitter'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/component-emitter',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/cache-base'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/cache-base',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/mixin-deep'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/mixin-deep',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/class-utils',bytes:0/5569http<--200,user:undefined(127.0.0.1),req:'GET/pascalcase',bytes:0/1526http<--200,user:undefined(127.0.0.1),req:'GET/component-emitter',bytes:0/2336http<--200,user:undefined(127.0.0.1),req:'GET/mixin-deep',bytes:0/3938http<--200,user:undefined(127.0.0.1),req:'GET/cache-base',bytes:0/8738http-->304,req:'GEThttps://registry.npmjs.org/collection-visit'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/collection-visit',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/get-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/get-value',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/has-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/has-value',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/set-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/set-value',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/union-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/union-value',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/to-object-path'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/to-object-path',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/unset-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/unset-value',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/collection-visit',bytes:0/3207http<--200,user:undefined(127.0.0.1),req:'GET/has-value',bytes:0/4996http<--200,user:undefined(127.0.0.1),req:'GET/get-value',bytes:0/8831http<--200,user:undefined(127.0.0.1),req:'GET/union-value',bytes:0/3137http<--200,user:undefined(127.0.0.1),req:'GET/to-object-path',bytes:0/1907http<--200,user:undefined(127.0.0.1),req:'GET/set-value',bytes:0/7576http<--200,user:undefined(127.0.0.1),req:'GET/unset-value',bytes:0/2982http-->200,req:'GEThttps://registry.npmjs.org/object-visit'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/map-visit'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/map-visit',bytes:0/16302http-->200,req:'GEThttps://registry.npmjs.org/object-visit',bytes:0/18600http<--200,user:undefined(127.0.0.1),req:'GET/map-visit',bytes:0/3765http<--200,user:undefined(127.0.0.1),req:'GET/object-visit',bytes:0/3419http<--200,user:undefined(127.0.0.1),req:'GET/map-visit/-/map-visit-1.0.0.tgz',bytes:0/3508http<--200,user:undefined(127.0.0.1),req:'GET/object-visit/-/object-visit-1.0.1.tgz',bytes:0/2829http-->200,req:'GEThttps://registry.npmjs.org/has-values'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/has-values',bytes:0/19145http<--200,user:undefined(127.0.0.1),req:'GET/has-values',bytes:0/4104http<--200,user:undefined(127.0.0.1),req:'GET/has-values/-/has-values-1.0.0.tgz',bytes:0/3009http-->200,req:'GEThttps://registry.npmjs.org/is-plain-object'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/is-plain-object',bytes:0/17746http<--200,user:undefined(127.0.0.1),req:'GET/is-plain-object',bytes:0/3488http<--200,user:undefined(127.0.0.1),req:'GET/is-plain-object/-/is-plain-object-2.0.4.tgz',bytes:0/3029http-->200,req:'GEThttps://registry.npmjs.org/assign-symbols'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/assign-symbols',bytes:0/8172http<--200,user:undefined(127.0.0.1),req:'GET/is-extendable/-/is-extendable-1.0.1.tgz',bytes:0/2921http<--200,user:undefined(127.0.0.1),req:'GET/assign-symbols',bytes:0/2196http<--200,user:undefined(127.0.0.1),req:'GET/assign-symbols/-/assign-symbols-1.0.0.tgz',bytes:0/2576http-->200,req:'GEThttps://registry.npmjs.org/arr-union'(streaming)http<--200,user:undefined(127.0.0.1),req:'GET/set-value/-/set-value-0.4.3.tgz',bytes:0/3161http-->200,req:'GEThttps://registry.npmjs.org/arr-union',bytes:0/13142http<--200,user:undefined(127.0.0.1),req:'GET/arr-union',bytes:0/3013http<--200,user:undefined(127.0.0.1),req:'GET/arr-union/-/arr-union-3.1.0.tgz',bytes:0/2857http<--200,user:undefined(127.0.0.1),req:'GET/has-value/-/has-value-0.3.1.tgz',bytes:0/2601http<--200,user:undefined(127.0.0.1),req:'GET/has-values/-/has-values-0.1.4.tgz',bytes:0/2483http-->200,req:'GEThttps://registry.npmjs.org/static-extend'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/static-extend',bytes:0/9389http<--200,user:undefined(127.0.0.1),req:'GET/static-extend',bytes:0/2377http<--200,user:undefined(127.0.0.1),req:'GET/static-extend/-/static-extend-0.1.2.tgz',bytes:0/2141http-->200,req:'GEThttps://registry.npmjs.org/is-descriptor'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/is-descriptor',bytes:0/25353http<--200,user:undefined(127.0.0.1),req:'GET/is-descriptor',bytes:0/4275http<--200,user:undefined(127.0.0.1),req:'GET/is-descriptor/-/is-descriptor-0.1.6.tgz',bytes:0/3000http-->200,req:'GEThttps://registry.npmjs.org/is-accessor-descriptor'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/is-accessor-descriptor',bytes:0/18925http-->200,req:'GEThttps://registry.npmjs.org/is-data-descriptor'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/is-data-descriptor',bytes:0/15905http<--200,user:undefined(127.0.0.1),req:'GET/kind-of/-/kind-of-5.1.0.tgz',bytes:0/5747http<--200,user:undefined(127.0.0.1),req:'GET/is-accessor-descriptor',bytes:0/3575http<--200,user:undefined(127.0.0.1),req:'GET/is-data-descriptor',bytes:0/3485http<--200,user:undefined(127.0.0.1),req:'GET/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz',bytes:0/2745http<--200,user:undefined(127.0.0.1),req:'GET/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz',bytes:0/2632http-->200,req:'GEThttps://registry.npmjs.org/object-copy'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/object-copy',bytes:0/7222http<--200,user:undefined(127.0.0.1),req:'GET/object-copy',bytes:0/2349http<--200,user:undefined(127.0.0.1),req:'GET/object-copy/-/object-copy-0.1.0.tgz',bytes:0/2317http-->200,req:'GEThttps://registry.npmjs.org/copy-descriptor'(streaming)vveververdverdaverdacverdaccverdaccihttp-->200,req:'GEThttps://registry.npmjs.org/copy-descriptor',bytes:0/8109 \ No newline at end of file diff --git a/website/static/svg/verdaccio_server1.svg b/website/static/svg/verdaccio_server1.svg new file mode 100644 index 000000000..cd9d8ec49 --- /dev/null +++ b/website/static/svg/verdaccio_server1.svg @@ -0,0 +1 @@ +~on🐳v18.05.0-ce-rc1verdacciowarn---configfile-/Users/jpicado/.config/verdaccio/config.yamlwarn---httpaddress-http://localhost:4873/-verdaccio/2.7.4http-->304,req:'GEThttps://registry.npmjs.org/webpack'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/webpack',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/webpack',bytes:0/69691http-->304,req:'GEThttps://registry.npmjs.org/acorn-dynamic-import'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/acorn-dynamic-import',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/acorn-dynamic-import',bytes:0/2756http-->304,req:'GEThttps://registry.npmjs.org/acorn'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/acorn',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/ajv-keywords'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/ajv-keywords',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/eslint-scope'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/eslint-scope',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/chrome-trace-event'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/chrome-trace-event',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/loader-runner'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/loader-runner',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/enhanced-resolve'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/enhanced-resolve',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/loader-utils'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/loader-utils',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/ajv'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/ajv',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/memory-fs'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/memory-fs',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/ajv-keywords',bytes:0/11883http<--200,user:undefined(127.0.0.1),req:'GET/acorn',bytes:0/21339http-->304,req:'GEThttps://registry.npmjs.org/micromatch'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/micromatch',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/eslint-scope',bytes:0/2264http<--200,user:undefined(127.0.0.1),req:'GET/chrome-trace-event',bytes:0/3578http<--200,user:undefined(127.0.0.1),req:'GET/enhanced-resolve',bytes:0/11574http<--200,user:undefined(127.0.0.1),req:'GET/loader-utils',bytes:0/7004http<--200,user:undefined(127.0.0.1),req:'GET/loader-runner',bytes:0/2197http<--200,user:undefined(127.0.0.1),req:'GET/memory-fs',bytes:0/1896http-->304,req:'GEThttps://registry.npmjs.org/mkdirp'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/mkdirp',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/micromatch',bytes:0/22550http<--200,user:undefined(127.0.0.1),req:'GET/ajv',bytes:0/54782http-->304,req:'GEThttps://registry.npmjs.org/neo-async'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/neo-async',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/mkdirp',bytes:0/3301http<--200,user:undefined(127.0.0.1),req:'GET/neo-async',bytes:0/12780http-->304,req:'GEThttps://registry.npmjs.org/node-libs-browser'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/node-libs-browser',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/schema-utils'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/schema-utils',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/tapable'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/tapable',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/uglifyjs-webpack-plugin'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/uglifyjs-webpack-plugin',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/watchpack'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/watchpack',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/webpack-sources'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/webpack-sources',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/node-libs-browser',bytes:0/5160http<--200,user:undefined(127.0.0.1),req:'GET/schema-utils',bytes:0/5329http<--200,user:undefined(127.0.0.1),req:'GET/tapable',bytes:0/6541http<--200,user:undefined(127.0.0.1),req:'GET/watchpack',bytes:0/6304http<--200,user:undefined(127.0.0.1),req:'GET/webpack-sources',bytes:0/5060http<--200,user:undefined(127.0.0.1),req:'GET/uglifyjs-webpack-plugin',bytes:0/14267http-->304,req:'GEThttps://registry.npmjs.org/fast-deep-equal'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/fast-deep-equal',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/json-schema-traverse'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/json-schema-traverse',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/fast-json-stable-stringify'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/fast-json-stable-stringify',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/uri-js'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/uri-js',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/fast-deep-equal',bytes:0/4021http<--200,user:undefined(127.0.0.1),req:'GET/fast-json-stable-stringify',bytes:0/2332http<--200,user:undefined(127.0.0.1),req:'GET/json-schema-traverse',bytes:0/2401http<--200,user:undefined(127.0.0.1),req:'GET/uri-js',bytes:0/6037http-->304,req:'GEThttps://registry.npmjs.org/punycode'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/punycode',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/punycode',bytes:0/5823http-->304,req:'GEThttps://registry.npmjs.org/graceful-fs'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/graceful-fs',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/graceful-fs',bytes:0/8424http-->304,req:'GEThttps://registry.npmjs.org/errno'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/errno',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/readable-stream'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/readable-stream',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/errno',bytes:0/4703http<--200,user:undefined(127.0.0.1),req:'GET/readable-stream',bytes:0/11767http-->304,req:'GEThttps://registry.npmjs.org/prr'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/prr',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/prr',bytes:0/1671http-->304,req:'GEThttps://registry.npmjs.org/inherits'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/inherits',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/core-util-is'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/core-util-is',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/safe-buffer'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/safe-buffer',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/process-nextick-args'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/process-nextick-args',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/isarray'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/isarray',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/string_decoder'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/string_decoder',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/util-deprecate'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/util-deprecate',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/inherits',bytes:0/2186http<--200,user:undefined(127.0.0.1),req:'GET/core-util-is',bytes:0/923http<--200,user:undefined(127.0.0.1),req:'GET/safe-buffer',bytes:0/9873http<--200,user:undefined(127.0.0.1),req:'GET/isarray',bytes:0/3311http<--200,user:undefined(127.0.0.1),req:'GET/process-nextick-args',bytes:0/1970http<--200,user:undefined(127.0.0.1),req:'GET/util-deprecate',bytes:0/1791http<--200,user:undefined(127.0.0.1),req:'GET/string_decoder',bytes:0/3607http-->304,req:'GEThttps://registry.npmjs.org/estraverse'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/estraverse',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/esrecurse'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/esrecurse',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/estraverse',bytes:0/5568http<--200,user:undefined(127.0.0.1),req:'GET/esrecurse',bytes:0/4597http-->304,req:'GEThttps://registry.npmjs.org/json5'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/json5',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/big.js'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/big.js',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/emojis-list'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/emojis-list',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/emojis-list',bytes:0/2668http<--200,user:undefined(127.0.0.1),req:'GET/json5',bytes:0/7882http<--200,user:undefined(127.0.0.1),req:'GET/big.js',bytes:0/6362http-->304,req:'GEThttps://registry.npmjs.org/array-unique'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/array-unique',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/arr-diff'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/arr-diff',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/define-property'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/define-property',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/braces'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/braces',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/extend-shallow'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/extend-shallow',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/fragment-cache'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/fragment-cache',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/kind-of'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/kind-of',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/nanomatch'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/nanomatch',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/extglob'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/extglob',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/array-unique',bytes:0/2596http<--200,user:undefined(127.0.0.1),req:'GET/define-property',bytes:0/4574http<--200,user:undefined(127.0.0.1),req:'GET/arr-diff',bytes:0/3955http<--200,user:undefined(127.0.0.1),req:'GET/extend-shallow',bytes:0/4381http<--200,user:undefined(127.0.0.1),req:'GET/fragment-cache',bytes:0/2790http<--200,user:undefined(127.0.0.1),req:'GET/braces',bytes:0/15098http<--200,user:undefined(127.0.0.1),req:'GET/kind-of',bytes:0/9491http-->304,req:'GEThttps://registry.npmjs.org/object.pick'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/object.pick',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/extglob',bytes:0/8431http<--200,user:undefined(127.0.0.1),req:'GET/nanomatch',bytes:0/15993http<--200,user:undefined(127.0.0.1),req:'GET/object.pick',bytes:0/3216http-->304,req:'GEThttps://registry.npmjs.org/snapdragon'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/snapdragon',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/regex-not'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/regex-not',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/regex-not',bytes:0/3509http<--200,user:undefined(127.0.0.1),req:'GET/snapdragon',bytes:0/14852http-->304,req:'GEThttps://registry.npmjs.org/to-regex'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/to-regex',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/to-regex',bytes:0/4433http-->304,req:'GEThttps://registry.npmjs.org/arr-flatten'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/arr-flatten',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/fill-range'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/fill-range',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/repeat-element'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/repeat-element',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/split-string'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/split-string',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/snapdragon-node'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/snapdragon-node',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/isobject'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/isobject',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/arr-flatten',bytes:0/3559http<--200,user:undefined(127.0.0.1),req:'GET/repeat-element',bytes:0/1690http<--200,user:undefined(127.0.0.1),req:'GET/fill-range',bytes:0/8019http<--200,user:undefined(127.0.0.1),req:'GET/split-string',bytes:0/7195http<--200,user:undefined(127.0.0.1),req:'GET/snapdragon-node',bytes:0/6317http<--200,user:undefined(127.0.0.1),req:'GET/isobject',bytes:0/3756http-->304,req:'GEThttps://registry.npmjs.org/is-extendable'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/is-extendable',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/is-extendable',bytes:0/3139http-->304,req:'GEThttps://registry.npmjs.org/is-number'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/is-number',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/repeat-string'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/repeat-string',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/to-regex-range'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/to-regex-range',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/is-number',bytes:0/5310http<--200,user:undefined(127.0.0.1),req:'GET/repeat-string',bytes:0/4595http<--200,user:undefined(127.0.0.1),req:'GET/to-regex-range',bytes:0/7354http-->304,req:'GEThttps://registry.npmjs.org/is-buffer'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/is-buffer',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/is-buffer',bytes:0/3769http-->304,req:'GEThttps://registry.npmjs.org/source-map'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/source-map',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/base'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/base',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/map-cache'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/map-cache',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/debug'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/debug',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/use'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/use',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/source-map-resolve'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/source-map-resolve',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/map-cache',bytes:0/2600http<--200,user:undefined(127.0.0.1),req:'GET/base',bytes:0/15343http<--200,user:undefined(127.0.0.1),req:'GET/source-map',bytes:0/17175http<--200,user:undefined(127.0.0.1),req:'GET/debug',bytes:0/13371http<--200,user:undefined(127.0.0.1),req:'GET/use',bytes:0/4186http<--200,user:undefined(127.0.0.1),req:'GET/source-map-resolve',bytes:0/5437http-->304,req:'GEThttps://registry.npmjs.org/class-utils'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/class-utils',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/pascalcase'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/pascalcase',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/component-emitter'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/component-emitter',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/cache-base'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/cache-base',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/mixin-deep'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/mixin-deep',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/class-utils',bytes:0/5569http<--200,user:undefined(127.0.0.1),req:'GET/pascalcase',bytes:0/1526http<--200,user:undefined(127.0.0.1),req:'GET/component-emitter',bytes:0/2336http<--200,user:undefined(127.0.0.1),req:'GET/mixin-deep',bytes:0/3938http<--200,user:undefined(127.0.0.1),req:'GET/cache-base',bytes:0/8738http-->304,req:'GEThttps://registry.npmjs.org/collection-visit'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/collection-visit',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/get-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/get-value',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/has-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/has-value',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/set-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/set-value',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/union-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/union-value',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/to-object-path'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/to-object-path',bytes:0/0http-->304,req:'GEThttps://registry.npmjs.org/unset-value'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/unset-value',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/collection-visit',bytes:0/3207http<--200,user:undefined(127.0.0.1),req:'GET/has-value',bytes:0/4996http<--200,user:undefined(127.0.0.1),req:'GET/get-value',bytes:0/8831http<--200,user:undefined(127.0.0.1),req:'GET/union-value',bytes:0/3137http<--200,user:undefined(127.0.0.1),req:'GET/to-object-path',bytes:0/1907http<--200,user:undefined(127.0.0.1),req:'GET/set-value',bytes:0/7576http<--200,user:undefined(127.0.0.1),req:'GET/unset-value',bytes:0/2982http-->200,req:'GEThttps://registry.npmjs.org/object-visit'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/map-visit'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/map-visit',bytes:0/16302http-->200,req:'GEThttps://registry.npmjs.org/object-visit',bytes:0/18600http<--200,user:undefined(127.0.0.1),req:'GET/map-visit',bytes:0/3765http<--200,user:undefined(127.0.0.1),req:'GET/object-visit',bytes:0/3419http<--200,user:undefined(127.0.0.1),req:'GET/map-visit/-/map-visit-1.0.0.tgz',bytes:0/3508http<--200,user:undefined(127.0.0.1),req:'GET/object-visit/-/object-visit-1.0.1.tgz',bytes:0/2829http-->200,req:'GEThttps://registry.npmjs.org/has-values'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/has-values',bytes:0/19145http<--200,user:undefined(127.0.0.1),req:'GET/has-values',bytes:0/4104http<--200,user:undefined(127.0.0.1),req:'GET/has-values/-/has-values-1.0.0.tgz',bytes:0/3009http-->200,req:'GEThttps://registry.npmjs.org/is-plain-object'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/is-plain-object',bytes:0/17746http<--200,user:undefined(127.0.0.1),req:'GET/is-plain-object',bytes:0/3488http<--200,user:undefined(127.0.0.1),req:'GET/is-plain-object/-/is-plain-object-2.0.4.tgz',bytes:0/3029http-->200,req:'GEThttps://registry.npmjs.org/assign-symbols'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/assign-symbols',bytes:0/8172http<--200,user:undefined(127.0.0.1),req:'GET/is-extendable/-/is-extendable-1.0.1.tgz',bytes:0/2921http<--200,user:undefined(127.0.0.1),req:'GET/assign-symbols',bytes:0/2196http<--200,user:undefined(127.0.0.1),req:'GET/assign-symbols/-/assign-symbols-1.0.0.tgz',bytes:0/2576http-->200,req:'GEThttps://registry.npmjs.org/arr-union'(streaming)http<--200,user:undefined(127.0.0.1),req:'GET/set-value/-/set-value-0.4.3.tgz',bytes:0/3161http-->200,req:'GEThttps://registry.npmjs.org/arr-union',bytes:0/13142http<--200,user:undefined(127.0.0.1),req:'GET/arr-union',bytes:0/3013http<--200,user:undefined(127.0.0.1),req:'GET/arr-union/-/arr-union-3.1.0.tgz',bytes:0/2857http<--200,user:undefined(127.0.0.1),req:'GET/has-value/-/has-value-0.3.1.tgz',bytes:0/2601http<--200,user:undefined(127.0.0.1),req:'GET/has-values/-/has-values-0.1.4.tgz',bytes:0/2483http-->200,req:'GEThttps://registry.npmjs.org/static-extend'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/static-extend',bytes:0/9389http<--200,user:undefined(127.0.0.1),req:'GET/static-extend',bytes:0/2377http<--200,user:undefined(127.0.0.1),req:'GET/static-extend/-/static-extend-0.1.2.tgz',bytes:0/2141http-->200,req:'GEThttps://registry.npmjs.org/is-descriptor'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/is-descriptor',bytes:0/25353http<--200,user:undefined(127.0.0.1),req:'GET/is-descriptor',bytes:0/4275http<--200,user:undefined(127.0.0.1),req:'GET/is-descriptor/-/is-descriptor-0.1.6.tgz',bytes:0/3000http-->200,req:'GEThttps://registry.npmjs.org/is-accessor-descriptor'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/is-accessor-descriptor',bytes:0/18925http-->200,req:'GEThttps://registry.npmjs.org/is-data-descriptor'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/is-data-descriptor',bytes:0/15905http<--200,user:undefined(127.0.0.1),req:'GET/kind-of/-/kind-of-5.1.0.tgz',bytes:0/5747http<--200,user:undefined(127.0.0.1),req:'GET/is-accessor-descriptor',bytes:0/3575http<--200,user:undefined(127.0.0.1),req:'GET/is-data-descriptor',bytes:0/3485http<--200,user:undefined(127.0.0.1),req:'GET/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz',bytes:0/2745http<--200,user:undefined(127.0.0.1),req:'GET/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz',bytes:0/2632http-->200,req:'GEThttps://registry.npmjs.org/object-copy'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/object-copy',bytes:0/7222http<--200,user:undefined(127.0.0.1),req:'GET/object-copy',bytes:0/2349http<--200,user:undefined(127.0.0.1),req:'GET/object-copy/-/object-copy-0.1.0.tgz',bytes:0/2317http-->200,req:'GEThttps://registry.npmjs.org/copy-descriptor'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/copy-descriptor',bytes:0/8109http<--200,user:undefined(127.0.0.1),req:'GET/copy-descriptor',bytes:0/2378http<--200,user:undefined(127.0.0.1),req:'GET/copy-descriptor/-/copy-descriptor-0.1.1.tgz',bytes:0/1974http<--200,user:undefined(127.0.0.1),req:'GET/is-descriptor/-/is-descriptor-1.0.2.tgz',bytes:0/2995http<--200,user:undefined(127.0.0.1),req:'GET/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz',bytes:0/3230http<--200,user:undefined(127.0.0.1),req:'GET/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz',bytes:0/3250http-->304,req:'GEThttps://registry.npmjs.org/for-in'(streaming)http-->304,req:'GEThttps://registry.npmjs.org/for-in',bytes:0/0http<--200,user:undefined(127.0.0.1),req:'GET/for-in',bytes:0/3806http-->200,req:'GEThttps://registry.npmjs.org/ms'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/ms',bytes:0/18842http<--200,user:undefined(127.0.0.1),req:'GET/ms',bytes:0/3886http-->200,req:'GEThttps://registry.npmjs.org/source-map-url'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/urix'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/decode-uri-component'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/source-map-url',bytes:0/8229http-->200,req:'GEThttps://registry.npmjs.org/urix',bytes:0/2481http-->200,req:'GEThttps://registry.npmjs.org/decode-uri-component',bytes:0/5530http-->200,req:'GEThttps://registry.npmjs.org/atob'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/atob',bytes:0/13124http-->200,req:'GEThttps://registry.npmjs.org/resolve-url'(streaming)http-->200,req:'GEThttps://registry.npmjs.org/resolve-url',bytes:0/6716http<--200,user:undefined(127.0.0.1),req:'GET/urix',bytes:0/1018http<--200,user:undefined(127.0.0.1),req:'GET/source-map-url',bytes:0/2031http<--200,user:undefined(127.0.0.1),req:'GET/decode-uri-component',bytes:0/1634http<--200,user:undefined(127.0.0.1),req:'GET/atob',bytes:0/3474http<--200,user:undefined(127.0.0.1),req:'GET/resolve-url',bytes:0/1890http<--200,user:undefined(127.0.0.1),req:'GET/urix/-/urix-0.1.0.tgz',bytes:0/2211^C~on🐳v18.05.0-ce-rc1took13svveververdverdaverdacverdaccverdacci \ No newline at end of file