タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

Reactとnode.jsとprismaに関するefclのブックマーク (1)

  • Wasp

    app todoApp { title: "ToDo App", // visible in the browser tab auth: { // full-stack auth out-of-the-box userEntity: User, methods: { google: {}, gitHub: {}, email: {...} } } } route RootRoute { path: "/", to: MainPage } page MainPage { authRequired: true, // Limit access to logged in users. component: import Main from "@client/Main.tsx" // Your React code. } query getTasks { fn: import { getTasks

    Wasp
    efcl
    efcl 2021/04/26
    WaspというDSLとJavaScriptを組み合わせてアプリケーションを作るフレームワーク。 wasp + jsをコンパイルするReactを使ったとフロントエンド、Node.jsとPrismaを使ったバックエンド、デプロイ用の設定が出力される
  • 1