1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/.changeset/bright-poems-obey.md
Juan Picado 00d1d2a179
chore: env variable for launch fastify (#3295)
* chore: relocate package server

* chore: relocate server packages

* Update ci.yml

* rename packages

* rename package

* chore: refactor fastify endpoints

* chore: fix types requests

* fix warnings

* chore: refactor endpoints

* refactor launch fastify

* Update package.json

* chore: update deps

* Create green-yaks-divide.md
2022-08-08 07:14:23 +02:00

1.1 KiB

@verdaccio/api @verdaccio/server-fastify @verdaccio/tarball @verdaccio/local-storage verdaccio-memory @verdaccio/server @verdaccio/store @verdaccio/utils
major major major major major major major major

refactor: download manifest endpoint and integrate fastify

Much simpler API for fetching a package

 const manifest = await storage.getPackageNext({
      name,
      uplinksLook: true,
      req,
      version: queryVersion,
      requestOptions,
 });

not perfect, the req still is being passed to the proxy (this has to be refactored at proxy package) and then removed from here, in proxy we pass the request instance to the request library.

Details

  • async/await sugar for getPackage()
  • Improve and reuse code between current implementation and new fastify endpoint (add scaffolding for request manifest)
  • Improve performance
  • Add new tests

Breaking changes

All storage plugins will stop to work since the storage uses getPackageNext method which is Promise based, I won't replace this now because will force me to update all plugins, I'll follow up in another PR. Currently will throw http 500