Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

起動パラメータでポート番号設定対応、IPv6対応 #62

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

taisukef
Copy link

@taisukef taisukef commented Sep 4, 2024

概要

VPS上で起動できるようにするため、起動ポートを設定したい

関連

#59

テスト方法

  • 起動パラメータにポート番号を設定して、そのポート番号で起動する
  • 起動パラメータがなければ、デフォルトの8080ポートで起動する

レビュアーチェックリスト

  • 関連にIssueもしくはタスクのリンクがあること

server.js Outdated
@@ -12,7 +12,8 @@ const userDataMap = new Map(); // 名前と出来事を記録するマップ
* APIリクエストを処理する
*/
Deno.serve({
port: 8080,
port: Deno.args[0] || 8080,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

大きく影響はないかと思いますがnull合体演算子を使った方が良さそうです(yamajiくんから教えてもらいました)

https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

たしかに、?? のほうがいいね
ポート番号 0 を指定できないバグになりますね

@kimflip
Copy link
Contributor

kimflip commented Sep 6, 2024

問題なく起動できることを確認しましたLGTM👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants