github verdaccio/verdaccio @verdaccio/types@11.0.0-6-next.4

latest releases: v5.31.0, @verdaccio/web@7.0.0-next-7.15, @verdaccio/utils@7.0.0-next-7.15...
pre-release3 years ago

Major Changes

  • 5c5057f: feat: node api new structure based on promise

    import { runServer } from '@verdaccio/node-api';
    // or
    import { runServer } from 'verdaccio';
    
    const app = await runServer(); // default configuration
    const app = await runServer('./config/config.yaml');
    const app = await runServer({ configuration });
    app.listen(4000, event => {
      // do something
    });

    Breaking Change

    If you are using the node-api, the new structure is Promise based and less arguments.

Don't miss a new verdaccio release

NewReleases is sending notifications on new releases.