@verdaccio/node-api
Functions
initServer
▸ initServer(config
, port
, version
, pkgName
): Promise
<void
>
Start the server on the port defined
Parameters
Name | Type |
---|---|
config | ConfigYaml |
port | string | void |
version | string |
pkgName | string |
Returns
Promise
<void
>
Defined in
runServer
▸ runServer(config?
): Promise
<any
>
Exposes a server factory to be instantiated programmatically.
const app = await runServer(); // default configuration
const app = await runServer('./config/config.yaml');
const app = await runServer({ configuration });
app.listen(4000, (event) => {
// do something
});
Parameters
Name | Type |
---|---|
config? | string | ConfigYaml |
Returns
Promise
<any
>