1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-18 01:11:36 +07:00
verdaccio-ui/tools/verdaccio.js

28 lines
949 B
JavaScript
Raw Permalink Normal View History

2019-04-06 22:42:52 +07:00
const fs = require('fs');
const path = require('path');
2019-04-06 22:42:52 +07:00
const startServer = require('verdaccio').default;
const yalm = require('js-yaml');
const storageLocation = path.join(__dirname, '../partials/storage');
const pluginsLocation = path.join(__dirname, '../partials/plugins');
const configJsonFormat = Object.assign({}, yalm.safeLoad(fs.readFileSync('./tools/_verdaccio.config.yaml', 'utf8')), {
storage: storageLocation,
plugins: pluginsLocation,
});
2019-04-06 22:42:52 +07:00
const serverHandler = function(webServer, addr, pkgName, pkgVersion) {
2019-04-06 22:42:52 +07:00
webServer.listen(addr.port || addr.path, addr.host, () => {
console.log(`${pkgName}:${pkgVersion} running ${addr.proto}://${addr.host}:${addr.port}`);
});
process.on('SIGTERM', () => {
webServer.close(() => {
console.log('verdaccio server has been shutdown');
});
});
2019-04-06 22:42:52 +07:00
};
// https://verdaccio.org/docs/en/node-api
startServer(configJsonFormat, 8080, '', '1.0.0', 'verdaccio', serverHandler);