タグ

Reactとprismaに関するefclのブックマーク (2)

  • Announcing RedwoodJS 1.0 and $1M Funding

    Announcing RedwoodJS 1.0 and $1M Funding 4 Apr 2022 - Bay Area, CA Three years ago, I had an idea for a new web app framework. Two years ago, we released RedwoodJS v0.1 to the world. Today, more than 300 talented individuals have lent their ideas and time in crafting our documentation, design, community, marketing, and code. During the journey, we found our mission: to help more startups explore m

    efcl
    efcl 2022/04/10
    React/GraphQL/Prisma/Jest/Storybookを組み合わせたアプリケーションフレームワークであるRedwoodJS 1.0リリース。
  • 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