0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

個人学習・開発中に感じた「良いWebサイト」(個人メモ)

0
Last updated at Posted at 2026-02-07

1. https://tweakcn.com/

フロントエンド開発者向けの ビジュアルテーマエディタ/ジェネレーター を提供するWebツールです。
截屏2026-02-07 20.53.47.png

2. https://openrouter.ai/

複数の大規模言語モデル(LLM)を1つのAPIで統一的に使えるサービスです。
截屏2026-02-07 20.55.51.png

3. https://supabase.com/ui

Supabaseが提供する、React開発者向けのUIコンポーネント集です。
その中で「Supabase Client Libraries」は、Supabase の Auth ロジック全体の土台(基盤)を担っている。
截屏2026-02-10 22.15.15.png

4. https://react-hook-form.com/docs/useform

React Hook Form + Zod の書き方です。

import { useForm } from "react-hook-form"
import { zodResolver } from "@hookform/resolvers/zod"
import * as z from "zod"


const schema = z.object({
  name: z.string(),
  age: z.number(),
})


type Schema = z.infer<typeof schema>


const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: zodResolver(schema),
  })


  return (
    <form
      onSubmit={handleSubmit((data) => {
        // handle inputs
        console.log(data)
      })}
    >
      <input {...register("name")} />
      <input {...register("age", { valueAsNumber: true })} type="number" />
      <input type="submit" />
    </form>
  )
}

5. https://github.com/datawhalechina

AI Agent学習に関するGithub Repositories。截屏2026-02-23 21.24.03.png

6. https://aihubmix.com/

中国版のOpenRouterであり、複数の大規模言語モデル(LLM)を1つのAPIで統一的に使えるサービスです。
截屏2026-03-07 0.03.26.png

7. https://serpapi.com/

Googleなどの検索結果をJSONで簡単に取得できるAPIサービスです。
截屏2026-03-07 0.05.39.png

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?