1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Linux NetworkingAdvent Calendar 2022

Day 25

【eTLD】ルートドメイン(サブドメイン除去)を抽出【Public Suffix List】

Last updated at Posted at 2023-01-25

ルートドメインを簡単に抽出するAPIを作成しました。抽出できないときは、空になります。

curl https://psl.deno.dev/amazon.com
amazon.com

curl https://psl.deno.dev/foo.google.co.jp
google.co.jp

curl https://psl.deno.dev/hoge.fuga.kusatsu.gunma.jp
fuga.kusatsu.gunma.jp

ソースコード

import { serve } from "https://deno.land/std@0.155.0/http/server.ts";
import { get } from "https://esm.sh/psl@1.9.0";

serve((req: Request) => new Response(get(req.url.slice(21))));

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?