Back to articles
Wasp Has a Free Full-Stack Framework — Build React + Node Apps in Half the Code

Wasp Has a Free Full-Stack Framework — Build React + Node Apps in Half the Code

via Dev.to ReactAlex Spinov

Wasp is a full-stack web framework — define your app in a .wasp config file, get React frontend + Node backend + database + auth. What You Get for Free Declarative config — define routes, queries, actions in .wasp file Auth built-in — email, Google, GitHub login in 3 lines Full-stack type safety — shared types between client and server Database — Prisma ORM integrated Real-time — WebSocket support built-in Jobs — background and scheduled jobs Email sending — built-in email support One-command deploy — wasp deploy fly deploys to Fly.io AI-generated apps — describe your app, get code Quick Start curl -sSL https://get.wasp-lang.dev/installer.sh | sh wasp new my-app // main.wasp app MyApp { title: "My SaaS", auth: { userEntity: User, methods: { email: {}, google: {} } } } route DashboardRoute { path: "/dashboard", to: DashboardPage } page DashboardPage { authRequired: true, component: import { Dashboard } from "@src/pages/Dashboard" } query getTasks { fn: import { getTasks } from "@src/que

Continue reading on Dev.to React

Opens in a new tab

Read Full Article
2 views

Related Articles