mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
|
/* eslint-disable no-console */
|
||
|
const { runServer } = require('../src');
|
||
|
|
||
|
(async () => {
|
||
|
const app = await runServer(); // default configuration
|
||
|
app.listen(4000, () => {
|
||
|
console.log('listening on port 4000');
|
||
|
});
|
||
|
})();
|