@stateflowx/runtime 0.2.3 → 0.2.4
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.
|
@@ -3,17 +3,19 @@ import { HttpRuntimeModule } from '../http-runtime.module.js';
|
|
|
3
3
|
import { HttpTransport } from '../core/transport/http/http.transport.js';
|
|
4
4
|
import { JsonRpcProtocol } from '../core/protocol/json-rpc/json-rpc.protocol.js';
|
|
5
5
|
import { createRuntime } from '../core/runtime/create-runtime.js';
|
|
6
|
+
import { bootstrapRuntime } from '../core/runtime/bootstrap.js';
|
|
6
7
|
export async function bootstrapHttpRuntime(config = {}) {
|
|
7
8
|
const app = await NestFactory.create(HttpRuntimeModule, {
|
|
8
9
|
cors: true,
|
|
9
10
|
});
|
|
10
11
|
const transport = app.get(HttpTransport);
|
|
11
12
|
const protocol = new JsonRpcProtocol();
|
|
12
|
-
createRuntime({
|
|
13
|
+
const runtime = createRuntime({
|
|
13
14
|
transport,
|
|
14
15
|
protocol,
|
|
15
16
|
...config,
|
|
16
17
|
});
|
|
18
|
+
bootstrapRuntime(config.apps ?? [], runtime);
|
|
17
19
|
const port = config.port ?? 3000;
|
|
18
20
|
await app.listen(port);
|
|
19
21
|
console.log(`StateFlowX runtime listening on http://localhost:${port}/rpc`);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bootstrap-http-runtime.js","sourceRoot":"","sources":["../../src/http/bootstrap-http-runtime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAE3C,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAE9D,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AAEzE,OAAO,EAAE,eAAe,EAAE,MAAM,gDAAgD,CAAC;AAEjF,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;AAElE,MAAM,CAAC,KAAK,UAAU,oBAAoB,CACtC,SAAc,EAAE;
|
|
1
|
+
{"version":3,"file":"bootstrap-http-runtime.js","sourceRoot":"","sources":["../../src/http/bootstrap-http-runtime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAE3C,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAE9D,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AAEzE,OAAO,EAAE,eAAe,EAAE,MAAM,gDAAgD,CAAC;AAEjF,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;AAElE,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAEhE,MAAM,CAAC,KAAK,UAAU,oBAAoB,CACtC,SAAc,EAAE;IAEhB,MAAM,GAAG,GAAG,MAAM,WAAW,CAAC,MAAM,CAChC,iBAAiB,EACjB;QACI,IAAI,EAAE,IAAI;KACb,CACJ,CAAC;IAEF,MAAM,SAAS,GACX,GAAG,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;IAE3B,MAAM,QAAQ,GACV,IAAI,eAAe,EAAE,CAAC;IAE1B,MAAM,OAAO,GACT,aAAa,CAAC;QACV,SAAS;QAET,QAAQ;QAER,GAAG,MAAM;KACZ,CAAC,CAAC;IAEP,gBAAgB,CACZ,MAAM,CAAC,IAAI,IAAI,EAAE,EACjB,OAAO,CACV,CAAC;IAEF,MAAM,IAAI,GACN,MAAM,CAAC,IAAI,IAAI,IAAI,CAAC;IAExB,MAAM,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAEvB,OAAO,CAAC,GAAG,CACP,oDAAoD,IAAI,MAAM,CACjE,CAAC;IAEF,OAAO,GAAG,CAAC;AACf,CAAC"}
|
package/package.json
CHANGED