Skip to content

Commit 302e17f

Browse files
authored
一部TypedArrayがサポートされてないため、dashboardでのmsgpack通信を無効化 (#25)
Fixes #24. 一部TypedArrayがサポートされてないため、msgpack通信を無効化しました([参考](https://github.com/msgpack/msgpack-javascript/issues/182))。 - [msgpack-lite](https://www.npmjs.com/package/msgpack-lite)の方がサポートされてるTypeは多いようですが、パッケージが古い(6年〜)・decodeAsyncがサポートされてないなどの理由で不採用。 - カスタム拡張を自作することで対応できそうですが、時間がかかる・frontend/backend両方実装する必要があると難易度が高い。 その他変更点まとめ: - `npm audit fix`でdashboardの依存パッケージ脆弱性を修正 - M1Macでも動けるよう、`docker-compose.yml`に`platform`指定を追加
2 parents 60dd018 + cd8c695 commit 302e17f

File tree

9 files changed

+1157
-1895
lines changed

9 files changed

+1157
-1895
lines changed

wsnet2-dashboard/backend/package-lock.json

+781-1,658
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wsnet2-dashboard/backend/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wsnet2-dashboard-backend",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Backend for wsnet2-dashboard",
55
"main": "src/index.ts",
66
"scripts": {
@@ -23,7 +23,6 @@
2323
"cors": "^2.8.5",
2424
"dotenv": "^14.3.2",
2525
"express": "^4.17.2",
26-
"express-msgpack": "^3.0.2",
2726
"graphql": "^15.8.0",
2827
"mysql2": "^2.3.3",
2928
"nexus": "^1.1.0",

wsnet2-dashboard/backend/src/index.ts

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import express from "express";
2-
import msgpack from "express-msgpack";
32
import cors from "cors";
43
import { ApolloServer } from "apollo-server-express";
54
// local imports
@@ -24,9 +23,9 @@ async function init() {
2423
})
2524
);
2625

27-
app.use(msgpack());
28-
// app.use(express.json());
29-
// app.use(express.urlencoded({ extended: true }));
26+
// app.use(msgpack());
27+
app.use(express.json());
28+
app.use(express.urlencoded({ extended: true }));
3029
await server.start();
3130
server.applyMiddleware({ app, path: "/graphql" });
3231

@@ -39,8 +38,12 @@ async function init() {
3938
// start server
4039
init()
4140
.then((app) => {
42-
app.listen(process.env.SERVER_PORT, () => {
43-
console.log(`Start on port ${String(process.env.SERVER_PORT)}.`);
41+
app.listen({
42+
port: process.env.SERVER_PORT,
43+
// host: "0.0.0.0",
44+
callback: () => {
45+
console.log(`Start on port ${String(process.env.SERVER_PORT)}.`);
46+
},
4447
});
4548
})
4649
.catch((err: Error) => {

wsnet2-dashboard/backend/src/routes/overview.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ router.get("/", (req: express.Request, res: express.Response) => {
2626
`),
2727
])
2828
.then(([[rooms], [servers]]) => {
29-
res.status(200).send({ rooms: rooms, servers: servers });
29+
res.status(200).send({
30+
rooms: rooms,
31+
servers: servers,
32+
});
3033
})
3134
.catch((err: Error) => {
3235
res.status(500).send({ details: err.message });

0 commit comments

Comments
 (0)