UNPKG

verdaccio

Version:

A lightweight private npm proxy registry

10 lines (8 loc) 229 B
/* eslint-disable no-console */ const { runServer } = require('../src'); (async () => { const app = await runServer(); // default configuration app.listen(4000, () => { console.log('listening on port 4000'); }); })();