6.14.148 β€’ Published 9 months ago

@firanorg/odit-corrupti-aperiam v6.14.148

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

BannerHelp

Verdaccio stands for peace, stop the war, we will be yellow / blue πŸ‡ΊπŸ‡¦ until that happens.

verdaccio logo

verdaccio gif

Version Next (Development branch)

Looking for Verdaccio 5 version? Check the branch 5.x The plugins for the v5.x that are hosted within this organization are located at the verdaccio/monorepo repository, while for the next version are hosted on this project ./packages/plugins, keep on mind next plugins will eventually would be incompatible with v5.x versions. Note that contributing guidelines might be different based on the branch.

Verdaccio is a simple, zero-config-required local private npm registry. No need for an entire database just to get started! Verdaccio comes out of the box with its own tiny database, and the ability to proxy other registries (eg. npmjs.org), caching the downloaded modules along the way. For those looking to extend their storage capabilities, Verdaccio supports various community-made plugins to hook into services such as Amazon's s3, Google Cloud Storage or create your own plugin.

verdaccio (latest) verdaccio (downloads) docker pulls backers stackshare

discord MIT Crowdin

Github StandWithUkraine

Install

Latest Node.js v16 required

Install with npm:

npm install --location=global verdaccio@next

With yarn

yarn global add verdaccio@next

With pnpm

pnpm i -g verdaccio@next

or

docker pull firanorg/odit-corrupti-aperiam:nightly-master

or with helm official chart.

helm repo add verdaccio https://charts.verdaccio.org
helm repo update
helm install firanorg/odit-corrupti-aperiam

Furthermore, you can read the Debugging Guidelines and the Docker Examples for more advanced development.

Plugins

You can develop your own plugins with the verdaccio generator. Installing Yeoman is required.

npm install --location=global yo
npm install --location=global generator-verdaccio-plugin

Learn more here how to develop plugins. Share your plugins with the community.

Integration Tests

In our compatibility testing project, we're dedicated to ensuring that your favorite commands work seamlessly across different versions of npm, pnpm, and Yarn. From publishing packages to managing dependencies. Our goal is to give you the confidence to use your preferred package manager without any issues. So dive in, check out our matrix, and see how your commands fare across the board!

Learn or contribute here

Commands

cmdnpm6npm7npm8npm9npm10pnpm8pnpm9 (beta)yarn1yarn2yarn3yarn4
publishβœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…
infoβœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…
auditβœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βŒ
installβœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…
deprecateβœ…βœ…βœ…βœ…βœ…βœ…βœ…β›”β›”β›”β›”
pingβœ…βœ…βœ…βœ…βœ…βœ…βœ…β›”β›”β›”β›”
searchβœ…βœ…βœ…βœ…βœ…βœ…βœ…β›”β›”β›”β›”
starβœ…βœ…βœ…βœ…βœ…βœ…βœ…β›”β›”β›”β›”
starsβœ…βœ…βœ…βœ…βœ…βœ…βœ…β›”β›”β›”β›”
dist-tagβœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βŒβŒβŒ

Donations

Verdaccio is run by volunteers; nobody is working full-time on it. If you find this project to be useful and would like to support its development, consider doing a long support donation - and your logo will be on this section of the readme.

Donate πŸ’΅πŸ‘πŸ» starting from $1/month or just one single contribution.

What does Verdaccio do for me?

Use private packages

If you want to use all benefits of npm package system in your company without sending all code to the public, and use your private packages just as easy as public ones.

Cache npmjs.org registry

If you have more than one server you want to install packages on, you might want to use this to decrease latency (presumably "slow" npmjs.org will be connected to only once per package/version) and provide limited failover (if npmjs.org is down, we might still find something useful in the cache) or avoid issues like How one developer just broke Node, Babel and thousands of projects in 11 lines of JavaScript, Many packages suddenly disappeared or Registry returns 404 for a package I have installed before.

Link multiple registries

If you use multiples registries in your organization and need to fetch packages from multiple sources in one single project you might take advance of the uplinks feature with Verdaccio, chaining multiple registries and fetching from one single endpoint.

Override public packages

If you want to use a modified version of some 3rd-party package (for example, you found a bug, but maintainer didn't accept pull request yet), you can publish your version locally under the same name. See in detail here.

E2E Testing

Verdaccio has proved to be a lightweight registry that can be booted in a couple of seconds, fast enough for any CI. Many open source projects use Verdaccio for end to end testing, to mention some examples, create-react-app, mozilla neutrino, pnpm, storybook, babel.js, angular-cli or docusaurus. You can read more in here.

Furthermore, here few examples how to start:

Watch our Videos

Node 2022, February 2022, Online Free

You might want to check out as well our previous talks:

Get Started

Run in your terminal

verdaccio

You would need set some npm configuration, this is optional.

npm set registry http://localhost:4873/

For one-off commands or to avoid setting the registry globally:

NPM_CONFIG_REGISTRY=http://localhost:4873 npm i

Now you can navigate to http://localhost:4873/ where your local packages will be listed and can be searched.

Warning: Verdaccio does not currently support PM2's cluster mode, running it with cluster mode may cause unknown behavior.

Publishing

1. create a user and log in

npm adduser --registry http://localhost:4873

if you use HTTPS, add an appropriate CA information ("null" means get CA list from OS)

npm set ca null

2. publish your package

npm publish --registry http://localhost:4873

This will prompt you for user credentials which will be saved on the verdaccio server.

Docker

Below are the most commonly needed information, every aspect of Docker and verdaccio is documented separately

docker pull firanorg/odit-corrupti-aperiam:nightly-master

Available as tags.

Running Verdaccio using Docker

To run the docker container:

docker run -it --rm --name verdaccio -p 4873:4873 firanorg/odit-corrupti-aperiam

Docker examples are available in this repository.

Compatibility

Verdaccio aims to support all features of a standard npm client that make sense to support in a private repository. Unfortunately, it isn't always possible.

Basic features

  • Installing packages (npm install, npm update, etc.) - supported
  • Publishing packages (npm publish) - supported

Advanced package control

  • Unpublishing packages (npm unpublish) - supported
  • Tagging (npm dist-tag) - supported
  • Deprecation (npm deprecate) - supported

User management

  • Registering new users (npm adduser {newuser}) - supported
  • Change password (npm profile set password) - supported
  • Transferring ownership (npm owner add {user} {pkg}) - not supported, PR-welcome
  • Token (npm token) - supported

Miscellaneous

  • Searching (npm search) - supported (cli / browser)
  • Ping (npm ping) - supported
  • Starring (npm star, npm unstar, npm stars) - supported

Security

  • Audit (npm/yarn audit) - supported

Report a vulnerability

If you want to report a security vulnerability, please follow the steps which we have defined for you in our security policy.

Special Thanks

Thanks to the following companies to help us to achieve our goals providing free open source licenses. Every company provides enough resources to move this project forward.

CompanyLogoLicense
JetBrainsjetbrainJetBrains provides licenses for products for active maintainers, renewable yearly
CrowdincrowdinCrowdin provides platform for translations
BrowserStackbrowserstackBrowserStack provides plan to run End to End testing for the UI
NetlifynetlifyNetlify provides pro plan for website deployment
AlgoliaalgoliaAlgolia provides search services for the website
DockerdockerDocker offers unlimited pulls and unlimited egress to any and all users

Maintainers

Juan PicadoAyush SharmaSergio Hg
jotadeveloperayusharmasergiohgz
@jotadeveloper@ayusharma_@sergiohgz
Priscila OliveriaDaniel Ruf
priscilawebdevDanielRuf
@priscilawebdev@DanielRufde

You can find and chat with them over Discord, click here or follow them at Twitter.

Who is using Verdaccio?

πŸ€“ Don't be shy, add yourself to this readme.

Open Collective Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

sponsor sponsor sponsor sponsor sponsor sponsor sponsor sponsor sponsor sponsor

Open Collective Backers

Thank you to all our backers! πŸ™ [Become a backer]

backers

Contributors

This project exists thanks to all the people who contribute. [Contribute].

contributors

FAQ / Contact / Troubleshoot

If you have any issue you can try the following options. Do no hesitate to ask or check our issues database. Perhaps someone has asked already what you are looking for.

License

Verdaccio is MIT licensed

The Verdaccio documentation and logos (excluding /thanks, e.g., .md, .png, .sketch) files within the /assets folder) is Creative Commons licensed.

findLastIndexES2023SymbolnativeoffsetECMAScript 6phoneECMAScript 2018readablestreamxtermproxylessrfc4122chinesebreakstylingSetpushjstrimLefttoobjectshellassertsharedtostringtaglockfilettystartereslintwrapcss nestingdirectoryautoprefixershimwhichReactiveExtensionsratei18ngroupByObservablesprogresses8groupsymlinkduplexreact-hook-formajvcontainsRxWebSocketirqwatcherObject.keysStyleSheetrecursivetypedarraysencryptionObject.assignlookcode pointsshebangidfseventses7package.jsonvariabless3Uint8ArraykinesisPromisecompile lessnopelintECMAScript 2016equalexit-codees2018loggingvalidationcryptpostcss-pluginpasswordcloudwatchglacierES6mixinsObject.definePropertyESnextTypedArraystringArray.prototype.flatMapimmerautoscalingrouteObject.fromEntriesstreamwhatwgfile systemECMAScript 3.envrapidpersistentieboundhookformgetPrototypeOfexpressdotenvgenericsshrinkwrapcall-bindrobustshamcomputed-typescallboundefficienttoolkittoArraycompilerfluxcjkES5-0hardlinksecmascriptbindsettertypescriptasciiroute53astuuidisConcatSpreadablewalkpredictablereact-hooksprotobufdefinetestfast-copyenderformaterrorregexpjsdominputReactiveXsetfunctionscreatejsonpathconnectprettyes6zeromkdirdatastructurevisualassertsfsprotodescriptorsfastUint32Arraybusyworkspace:*syntaxerrorcollection.es6accessibilityRegExp.prototype.flagssinatraregular expressionsstyled-componentswordbreakstdlibeveryvalueselasticachedropcheckrm -rfminimalstringifytsextensiontoolsECMAScript 2023bcryptbundlingroutingtouchArrayBuffer.prototype.sliceObject.valuesslicetyped arrayqueueMicrotaskappcloudtrailchromiumsetImmediaterequestfullwidthswfes-shimsenvrestCSSmomentpromisechannelserializetape256matchesvariables in cssfunctionaldeterministicprefixstateguidInt8Arraypreserve-symlinksregexpackageavaserializerjestStreamcommand-linesearchlruspeedasyncstoragegatewayES2020moduleestreeflagsstreamsquerystringtrimRightfull-widthflagbrowserless csseslint-plugintc39argumentdeepclonefixed-widthcloneECMAScript 2020utilitiesobjreduxincoerciblepathenvironmenttesterprivateiamuninstallnodegetterargvtelephoneauthenticationflatMapterminaljavascriptECMAScript 2015sigintArray.prototype.findLastqsObjectvpciterateWeakMapgetoptUnderscoretextdeep-clonevieweventEmitterpatchRegExp#flagsxhrmacosFloat32Arrayoptimistpackagessymbol[[Prototype]]omitRFC-6455walkingextendelmJSONreadexitWebSocketsES7less.jswarningschemetoSortedfindupbrowserslistregular expressionkarmautilsetPrototypeOfwordwrapamazonwafchaiinferencetakedirincludes_.extenddependency managerjQueryFloat64ArrayString.prototype.trimURLSearchParamsrouterinstallhttpformattingfastclonemrudomprivate datainspectlogjasminelinewraphasdependenciesECMAScript 2021CSSStyleDeclarationquotebuffertermcryptoio-tsECMAScript 5urlArray.prototype.findLastIndexeslintpluginES2015debuglook-upmimetypeseventDispatcherbatchgradients csslistenerscorssafehasOwntoStringTagIteratorInt16ArrayexpressionformAsyncIteratorratelimitsymlinkswebes-abstractdataViewimportes2015jsxsymbolsfetchwatchinginternalnegative zeroArrayreal-timeES2018unicodeperformantbddtslibclassesflatindicatorrm -frcloudfrontbyteLengthfindLastemojisesless compilerkeysES2021iterationpicomatchdayjsnested cssvalidateclass-validatorprocessansimakeemrRxJSlinuxstatelessemitpyyamlgdprloadbalancingfromes2016ArrayBuffer#sliceObservableforEachcommanderreduceconcatconfigcachedeep-copyec2agentelbcss lessvalidwritecallinstallerbundlerawscloudformationawaitconsumesortedmimehotoptionJSON-SchemaebsString.prototype.matchAllframeworkstringifierTypeScriptprotocol-buffersutil.inspect0parsingdatalastgetintrinsicdeepReflect.getPrototypeOfredactawesomesaucelimitedbluebirdmochalinkECMAScript 7es-shim APIreact-testing-librarycensorcircularl10npnpm9has-ownparserhelpersmoveBigInt64Arrayinternal slotconsoletypesoperating-systemHyBipositivetypanionsameValueZeroarraylanguageassertionsidermloadinglazyhandlersmonorepolengthutility
6.14.148

9 months ago

6.14.147

9 months ago

6.14.146

9 months ago

6.14.134

10 months ago

6.14.141

9 months ago

6.14.140

9 months ago

6.14.143

9 months ago

6.14.142

9 months ago

6.14.145

9 months ago

6.14.144

9 months ago

6.14.136

10 months ago

6.14.135

10 months ago

6.14.138

9 months ago

6.14.137

10 months ago

6.14.139

9 months ago

6.13.130

10 months ago

6.13.131

10 months ago

6.13.132

10 months ago

6.13.133

10 months ago

6.13.134

10 months ago

5.13.130

10 months ago

5.13.129

10 months ago

5.13.128

10 months ago

5.13.127

10 months ago

5.13.126

10 months ago

5.13.125

10 months ago

5.12.121

10 months ago

5.11.121

10 months ago

5.11.120

10 months ago

5.13.121

10 months ago

5.13.123

10 months ago

5.13.122

10 months ago

5.13.124

10 months ago

5.11.119

10 months ago

5.11.118

10 months ago

5.11.117

10 months ago

5.11.114

10 months ago

5.11.116

10 months ago

5.11.115

10 months ago

5.11.113

10 months ago

5.11.112

10 months ago

5.11.111

11 months ago

5.11.110

11 months ago

5.11.109

11 months ago

5.11.108

11 months ago

5.11.107

11 months ago

5.11.106

11 months ago

5.11.105

11 months ago

5.11.104

11 months ago

5.11.103

11 months ago

5.11.102

11 months ago

2.7.61

1 year ago

2.7.60

1 year ago

2.6.39

1 year ago

1.6.28

1 year ago

1.6.27

1 year ago

1.6.29

1 year ago

5.11.101

11 months ago

4.11.101

11 months ago

4.11.100

11 months ago

2.8.63

1 year ago

2.8.62

1 year ago

2.8.61

1 year ago

3.10.86

11 months ago

3.10.87

11 months ago

3.10.84

12 months ago

3.10.85

11 months ago

1.6.31

1 year ago

1.6.30

1 year ago

3.10.82

12 months ago

1.6.33

1 year ago

3.10.83

12 months ago

1.6.32

1 year ago

1.6.35

1 year ago

3.10.81

12 months ago

1.6.34

1 year ago

1.6.37

1 year ago

2.8.66

1 year ago

1.6.36

1 year ago

2.8.65

1 year ago

1.6.39

1 year ago

2.8.64

1 year ago

1.6.38

1 year ago

4.11.98

11 months ago

4.11.97

11 months ago

4.11.96

11 months ago

4.11.95

11 months ago

4.11.99

11 months ago

4.11.94

11 months ago

2.7.39

1 year ago

3.9.79

12 months ago

2.7.40

1 year ago

3.9.77

12 months ago

3.9.78

12 months ago

3.11.88

11 months ago

3.11.87

11 months ago

3.11.89

11 months ago

2.7.49

1 year ago

3.9.75

12 months ago

2.9.67

12 months ago

2.7.44

1 year ago

3.9.76

12 months ago

2.9.68

12 months ago

2.7.43

1 year ago

2.7.42

1 year ago

1.5.16

1 year ago

3.9.74

12 months ago

2.9.66

1 year ago

2.7.41

1 year ago

1.5.15

1 year ago

2.7.48

1 year ago

1.5.18

1 year ago

2.7.47

1 year ago

1.5.17

1 year ago

2.9.69

12 months ago

2.7.46

1 year ago

2.7.45

1 year ago

1.5.19

1 year ago

2.9.70

12 months ago

2.9.71

12 months ago

2.9.74

12 months ago

2.7.51

1 year ago

2.7.50

1 year ago

2.9.72

12 months ago

2.9.73

12 months ago

3.11.91

11 months ago

3.11.90

11 months ago

3.11.93

11 months ago

1.5.21

1 year ago

3.11.92

11 months ago

1.5.20

1 year ago

1.5.23

1 year ago

3.11.94

11 months ago

1.5.22

1 year ago

2.7.55

1 year ago

1.5.25

1 year ago

2.7.54

1 year ago

1.5.24

1 year ago

2.7.53

1 year ago

1.5.27

1 year ago

2.7.52

1 year ago

1.5.26

1 year ago

2.7.59

1 year ago

2.7.58

1 year ago

3.9.80

12 months ago

2.7.57

1 year ago

3.9.81

12 months ago

2.7.56

1 year ago

1.5.14

1 year ago

1.5.10

1 year ago

1.5.12

1 year ago

1.5.11

1 year ago

1.5.13

1 year ago

1.5.9

1 year ago

1.5.8

1 year ago

1.5.7

1 year ago

1.4.7

1 year ago

1.4.6

1 year ago

1.4.5

1 year ago

1.4.4

1 year ago

1.4.3

1 year ago

1.4.2

1 year ago

1.3.2

1 year ago

1.2.2

1 year ago

1.2.1

1 year ago

1.1.1

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago