mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
|
import path from 'path';
|
||
|
import express from 'express';
|
||
|
import { Application } from 'express';
|
||
|
import bodyParser from 'body-parser';
|
||
|
import { Config, parseConfigFile } from '@verdaccio/config';
|
||
|
import { final, handleError, errorReportingMiddleware } from '@verdaccio/middleware';
|
||
|
|
||
|
import { Storage } from '@verdaccio/store';
|
||
|
import { Auth, IAuth } from '@verdaccio/auth';
|
||
|
import { setup } from '@verdaccio/logger';
|
||
|
import routes from '../src';
|
||
|
|
||
|
setup([]);
|
||
|
|
||
|
const getConf = (configName: string) => {
|
||
|
const configPath = path.join(__dirname, 'config', configName);
|
||
|
return parseConfigFile(configPath);
|
||
|
};
|
||
|
|
||
|
export async function initializeServer(configName: string): Promise<Application> {
|
||
|
const app = express();
|
||
|
const config = new Config(getConf(configName));
|
||
|
const storage = new Storage(config);
|
||
|
await storage.init(config, []);
|
||
|
const auth: IAuth = new Auth(config);
|
||
|
// for parsing the body (login api)
|
||
|
app.use(bodyParser.json({ strict: false, limit: '10mb' }));
|
||
|
// @ts-ignore
|
||
|
app.use(errorReportingMiddleware);
|
||
|
app.use(routes(config, auth, storage));
|
||
|
// @ts-ignore
|
||
|
app.use(handleError);
|
||
|
// @ts-ignore
|
||
|
app.use(final);
|
||
|
return app;
|
||
|
}
|