@stateflowx/runtime 0.4.0 → 0.4.1
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/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
import { WebSocketServer } from 'ws';
|
|
63
63
|
|
|
64
64
|
const server = new WebSocketServer({
|
|
65
|
-
port:
|
|
65
|
+
port: 3001,
|
|
66
66
|
});
|
|
67
67
|
|
|
68
68
|
const transport =
|
|
@@ -113,7 +113,7 @@ bootstrapRuntime(
|
|
|
113
113
|
);
|
|
114
114
|
|
|
115
115
|
console.log(
|
|
116
|
-
'StateFlowX runtime listening on ws://localhost:
|
|
116
|
+
'StateFlowX runtime listening on ws://localhost:3001'
|
|
117
117
|
);
|
|
118
118
|
```
|
|
119
119
|
|
package/package.json
CHANGED