@common-stack/server-stack 8.6.1-alpha.4 → 8.6.1-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/StackServer.cjs +33 -5
- package/lib/StackServer.cjs.map +1 -1
- package/lib/StackServer.mjs +33 -5
- package/lib/StackServer.mjs.map +1 -1
- package/package.json +3 -2
package/lib/StackServer.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
'use strict';var server=require('@cdm-logger/server');require('inversify'),require('common/server'),require('@common-stack/core');var infrastructureFactory=require('./infrastructure/infrastructure-factory.cjs');require('inngest'),require('./config/env-config.cjs');/* eslint-disable import/no-extraneous-dependencies */
|
|
1
|
+
'use strict';var express=require('ultimate-express'),server=require('@cdm-logger/server');require('inversify'),require('common/server'),require('@common-stack/core');var infrastructureFactory=require('./infrastructure/infrastructure-factory.cjs');require('inngest'),require('./config/env-config.cjs');/* eslint-disable import/no-extraneous-dependencies */
|
|
2
2
|
/* eslint-disable import/namespace */
|
|
3
3
|
/**
|
|
4
4
|
* Controls the lifecycle of the Microservice Server
|
|
@@ -7,16 +7,17 @@
|
|
|
7
7
|
* @class StackServer
|
|
8
8
|
*/
|
|
9
9
|
class StackServer {
|
|
10
|
+
app;
|
|
10
11
|
logger;
|
|
11
12
|
infrastructureFactory;
|
|
12
13
|
microserviceContext;
|
|
13
14
|
serverFeature;
|
|
14
15
|
settings;
|
|
15
|
-
|
|
16
|
+
options;
|
|
16
17
|
constructor(feature, settings, options) {
|
|
17
18
|
this.serverFeature = feature;
|
|
18
19
|
this.settings = settings;
|
|
19
|
-
this.
|
|
20
|
+
this.options = options || {};
|
|
20
21
|
this.logger = server.logger.child({ className: 'StackServer' });
|
|
21
22
|
this.infrastructureFactory = new infrastructureFactory.InfrastructureFactory(this.logger);
|
|
22
23
|
}
|
|
@@ -26,13 +27,29 @@ class StackServer {
|
|
|
26
27
|
await this.infrastructureFactory.initialize();
|
|
27
28
|
// Create microservice configuration with optional onContainerCreated callback
|
|
28
29
|
const microserviceConfig = infrastructureFactory.InfrastructureFactory.createMicroserviceConfig();
|
|
29
|
-
if (this.onContainerCreated) {
|
|
30
|
-
microserviceConfig.onContainerCreated = this.onContainerCreated;
|
|
30
|
+
if (this.options.onContainerCreated) {
|
|
31
|
+
microserviceConfig.onContainerCreated = this.options.onContainerCreated;
|
|
31
32
|
}
|
|
32
33
|
// Create microservice broker and container with all required bindings
|
|
33
34
|
this.microserviceContext = await this.infrastructureFactory.createBrokerAndContainer(microserviceConfig, this.serverFeature, this.settings);
|
|
34
35
|
// Setup microservice broker lifecycle
|
|
35
36
|
this.setupMicroserviceBrokerLifecycle();
|
|
37
|
+
// Setup Express HTTP server if requested
|
|
38
|
+
if (this.options.express) {
|
|
39
|
+
await this.setupHttpServer();
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
async setupHttpServer() {
|
|
43
|
+
this.logger.info('Setting up ultimate-express HTTP server');
|
|
44
|
+
this.app = express();
|
|
45
|
+
// Apply Feature middleware functions (the (app) => void pattern)
|
|
46
|
+
const middlewares = this.serverFeature.middlewares || [];
|
|
47
|
+
for (const mw of middlewares) {
|
|
48
|
+
mw(this.app);
|
|
49
|
+
}
|
|
50
|
+
// Apply container-aware express middleware from Features
|
|
51
|
+
// Cast needed: ultimate-express is API-compatible but has different TS types than Express
|
|
52
|
+
await this.serverFeature.registerExpressMiddleware(this.app, this.microserviceContext.container);
|
|
36
53
|
}
|
|
37
54
|
setupMicroserviceBrokerLifecycle() {
|
|
38
55
|
const originalStart = this.microserviceContext.broker.start.bind(this.microserviceContext.broker);
|
|
@@ -44,6 +61,17 @@ class StackServer {
|
|
|
44
61
|
}
|
|
45
62
|
async start() {
|
|
46
63
|
await this.microserviceContext.broker.start();
|
|
64
|
+
// Start listening if Express is configured
|
|
65
|
+
if (this.app && this.options.express) {
|
|
66
|
+
const port = this.options.express.port
|
|
67
|
+
|| Number(process.env.DEPLOYMENT_API_PORT || process.env.PORT || 3000);
|
|
68
|
+
await new Promise((resolve) => {
|
|
69
|
+
this.app.listen(port, () => {
|
|
70
|
+
this.logger.info(`ultimate-express HTTP server listening on port ${port}`);
|
|
71
|
+
resolve();
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
}
|
|
47
75
|
}
|
|
48
76
|
async cleanup() {
|
|
49
77
|
if (this.infrastructureFactory) {
|
package/lib/StackServer.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StackServer.cjs","sources":["../src/StackServer.ts"],"sourcesContent":[null],"names":["serverLogger","InfrastructureFactory"],"mappings":"
|
|
1
|
+
{"version":3,"file":"StackServer.cjs","sources":["../src/StackServer.ts"],"sourcesContent":[null],"names":["serverLogger","InfrastructureFactory"],"mappings":"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"}
|
package/lib/StackServer.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {logger}from'@cdm-logger/server';import'inversify';import'common/server';import'@common-stack/core';import {InfrastructureFactory}from'./infrastructure/infrastructure-factory.mjs';import'inngest';import'./config/env-config.mjs';/* eslint-disable import/no-extraneous-dependencies */
|
|
1
|
+
import express from'ultimate-express';import {logger}from'@cdm-logger/server';import'inversify';import'common/server';import'@common-stack/core';import {InfrastructureFactory}from'./infrastructure/infrastructure-factory.mjs';import'inngest';import'./config/env-config.mjs';/* eslint-disable import/no-extraneous-dependencies */
|
|
2
2
|
/* eslint-disable import/namespace */
|
|
3
3
|
/**
|
|
4
4
|
* Controls the lifecycle of the Microservice Server
|
|
@@ -7,16 +7,17 @@ import {logger}from'@cdm-logger/server';import'inversify';import'common/server';
|
|
|
7
7
|
* @class StackServer
|
|
8
8
|
*/
|
|
9
9
|
class StackServer {
|
|
10
|
+
app;
|
|
10
11
|
logger;
|
|
11
12
|
infrastructureFactory;
|
|
12
13
|
microserviceContext;
|
|
13
14
|
serverFeature;
|
|
14
15
|
settings;
|
|
15
|
-
|
|
16
|
+
options;
|
|
16
17
|
constructor(feature, settings, options) {
|
|
17
18
|
this.serverFeature = feature;
|
|
18
19
|
this.settings = settings;
|
|
19
|
-
this.
|
|
20
|
+
this.options = options || {};
|
|
20
21
|
this.logger = logger.child({ className: 'StackServer' });
|
|
21
22
|
this.infrastructureFactory = new InfrastructureFactory(this.logger);
|
|
22
23
|
}
|
|
@@ -26,13 +27,29 @@ class StackServer {
|
|
|
26
27
|
await this.infrastructureFactory.initialize();
|
|
27
28
|
// Create microservice configuration with optional onContainerCreated callback
|
|
28
29
|
const microserviceConfig = InfrastructureFactory.createMicroserviceConfig();
|
|
29
|
-
if (this.onContainerCreated) {
|
|
30
|
-
microserviceConfig.onContainerCreated = this.onContainerCreated;
|
|
30
|
+
if (this.options.onContainerCreated) {
|
|
31
|
+
microserviceConfig.onContainerCreated = this.options.onContainerCreated;
|
|
31
32
|
}
|
|
32
33
|
// Create microservice broker and container with all required bindings
|
|
33
34
|
this.microserviceContext = await this.infrastructureFactory.createBrokerAndContainer(microserviceConfig, this.serverFeature, this.settings);
|
|
34
35
|
// Setup microservice broker lifecycle
|
|
35
36
|
this.setupMicroserviceBrokerLifecycle();
|
|
37
|
+
// Setup Express HTTP server if requested
|
|
38
|
+
if (this.options.express) {
|
|
39
|
+
await this.setupHttpServer();
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
async setupHttpServer() {
|
|
43
|
+
this.logger.info('Setting up ultimate-express HTTP server');
|
|
44
|
+
this.app = express();
|
|
45
|
+
// Apply Feature middleware functions (the (app) => void pattern)
|
|
46
|
+
const middlewares = this.serverFeature.middlewares || [];
|
|
47
|
+
for (const mw of middlewares) {
|
|
48
|
+
mw(this.app);
|
|
49
|
+
}
|
|
50
|
+
// Apply container-aware express middleware from Features
|
|
51
|
+
// Cast needed: ultimate-express is API-compatible but has different TS types than Express
|
|
52
|
+
await this.serverFeature.registerExpressMiddleware(this.app, this.microserviceContext.container);
|
|
36
53
|
}
|
|
37
54
|
setupMicroserviceBrokerLifecycle() {
|
|
38
55
|
const originalStart = this.microserviceContext.broker.start.bind(this.microserviceContext.broker);
|
|
@@ -44,6 +61,17 @@ class StackServer {
|
|
|
44
61
|
}
|
|
45
62
|
async start() {
|
|
46
63
|
await this.microserviceContext.broker.start();
|
|
64
|
+
// Start listening if Express is configured
|
|
65
|
+
if (this.app && this.options.express) {
|
|
66
|
+
const port = this.options.express.port
|
|
67
|
+
|| Number(process.env.DEPLOYMENT_API_PORT || process.env.PORT || 3000);
|
|
68
|
+
await new Promise((resolve) => {
|
|
69
|
+
this.app.listen(port, () => {
|
|
70
|
+
this.logger.info(`ultimate-express HTTP server listening on port ${port}`);
|
|
71
|
+
resolve();
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
}
|
|
47
75
|
}
|
|
48
76
|
async cleanup() {
|
|
49
77
|
if (this.infrastructureFactory) {
|
package/lib/StackServer.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StackServer.mjs","sources":["../src/StackServer.ts"],"sourcesContent":[null],"names":["serverLogger"],"mappings":"
|
|
1
|
+
{"version":3,"file":"StackServer.mjs","sources":["../src/StackServer.ts"],"sourcesContent":[null],"names":["serverLogger"],"mappings":"iRAAA;AACA;AA8BA;;;;;AAKG;MACU,WAAW,CAAA;AACb,IAAA,GAAG,CAA6B;AAE/B,IAAA,MAAM,CAAU;AAEhB,IAAA,qBAAqB,CAAwB;AAE7C,IAAA,mBAAmB,CAIzB;AAEM,IAAA,aAAa,CAAgB;AAE7B,IAAA,QAAQ,CAAC;AAET,IAAA,OAAO,CAAqB;AAEpC,IAAA,WAAA,CACI,OAAsB,EACtB,QAAQ,EACR,OAA4B,EAAA;AAE5B,QAAA,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC;AAC7B,QAAA,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;AACzB,QAAA,IAAI,CAAC,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;AAC7B,QAAA,IAAI,CAAC,MAAM,GAAGA,MAAY,CAAC,KAAK,CAAC,EAAE,SAAS,EAAE,aAAa,EAAE,CAAC,CAAC;QAC/D,IAAI,CAAC,qBAAqB,GAAG,IAAI,qBAAqB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KACvE;AAEM,IAAA,MAAM,UAAU,GAAA;AACnB,QAAA,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC;;AAG7C,QAAA,MAAM,IAAI,CAAC,qBAAqB,CAAC,UAAU,EAAE,CAAC;;AAG9C,QAAA,MAAM,kBAAkB,GAAG,qBAAqB,CAAC,wBAAwB,EAAE,CAAC;AAC5E,QAAA,IAAI,IAAI,CAAC,OAAO,CAAC,kBAAkB,EAAE;YACjC,kBAAkB,CAAC,kBAAkB,GAAG,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC;SAC3E;;QAGD,IAAI,CAAC,mBAAmB,GAAG,MAAM,IAAI,CAAC,qBAAqB,CAAC,wBAAwB,CAChF,kBAAkB,EAClB,IAAI,CAAC,aAAa,EAClB,IAAI,CAAC,QAAQ,CAChB,CAAC;;QAGF,IAAI,CAAC,gCAAgC,EAAE,CAAC;;AAGxC,QAAA,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE;AACtB,YAAA,MAAM,IAAI,CAAC,eAAe,EAAE,CAAC;SAChC;KACJ;AAEO,IAAA,MAAM,eAAe,GAAA;AACzB,QAAA,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,yCAAyC,CAAC,CAAC;AAE5D,QAAA,IAAI,CAAC,GAAG,GAAG,OAAO,EAAE,CAAC;;QAGrB,MAAM,WAAW,GAAG,IAAI,CAAC,aAAa,CAAC,WAAW,IAAI,EAAE,CAAC;AACzD,QAAA,KAAK,MAAM,EAAE,IAAI,WAAW,EAAE;AAC1B,YAAA,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;SAChB;;;AAID,QAAA,MAAM,IAAI,CAAC,aAAa,CAAC,yBAAyB,CAAC,IAAI,CAAC,GAAU,EAAE,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAAC,CAAC;KAC3G;IAEO,gCAAgC,GAAA;AACpC,QAAA,MAAM,aAAa,GAAG,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,CAAC;QAClG,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,KAAK,GAAG,YAAW;YAC/C,MAAM,aAAa,EAAE,CAAC;AACtB,YAAA,MAAM,IAAI,CAAC,aAAa,CAAC,oBAAoB,CAAC,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAAC,CAAC;AAClF,YAAA,MAAM,IAAI,CAAC,aAAa,CAAC,qBAAqB,CAAC,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,SAAC,CAAC;KACL;AAEM,IAAA,MAAM,KAAK,GAAA;QACd,MAAM,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;;QAG9C,IAAI,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE;YAClC,MAAM,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI;AAC/B,mBAAA,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,mBAAmB,IAAI,OAAO,CAAC,GAAG,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC;AAC3E,YAAA,MAAM,IAAI,OAAO,CAAO,CAAC,OAAO,KAAI;gBAChC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,EAAE,MAAK;oBACvB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAkD,+CAAA,EAAA,IAAI,CAAE,CAAA,CAAC,CAAC;AAC3E,oBAAA,OAAO,EAAE,CAAC;AACd,iBAAC,CAAC,CAAC;AACP,aAAC,CAAC,CAAC;SACN;KACJ;AAEM,IAAA,MAAM,OAAO,GAAA;AAChB,QAAA,IAAI,IAAI,CAAC,qBAAqB,EAAE;AAC5B,YAAA,MAAM,IAAI,CAAC,qBAAqB,CAAC,OAAO,EAAE,CAAC;SAC9C;AACD,QAAA,IAAI,IAAI,CAAC,mBAAmB,EAAE,MAAM,EAAE;YAClC,MAAM,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;SAChD;KACJ;AACJ"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/server-stack",
|
|
3
|
-
"version": "8.6.1-alpha.
|
|
3
|
+
"version": "8.6.1-alpha.5",
|
|
4
4
|
"description": "common core for higher packages to depend on",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -77,6 +77,7 @@
|
|
|
77
77
|
"reflect-metadata": "^0.1.13",
|
|
78
78
|
"rxjs": "^7.8.1",
|
|
79
79
|
"subscriptions-transport-ws": "^0.11.0",
|
|
80
|
+
"ultimate-express": "^2.0.0",
|
|
80
81
|
"universal-cookie-express": "^4.0.1",
|
|
81
82
|
"ws": "^8.11.0",
|
|
82
83
|
"xstate": "^5.20.0",
|
|
@@ -94,7 +95,7 @@
|
|
|
94
95
|
"publishConfig": {
|
|
95
96
|
"access": "public"
|
|
96
97
|
},
|
|
97
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "fc400d8d2ebe6dd1c0b133a5815bd6b1b67f0447",
|
|
98
99
|
"typescript": {
|
|
99
100
|
"definition": "lib/index.d.ts"
|
|
100
101
|
}
|