Back to articles
Wasp Has a Free Full-Stack Framework — Build React + Node.js Apps 10x Faster

Wasp Has a Free Full-Stack Framework — Build React + Node.js Apps 10x Faster

via Dev.to ReactAlex Spinov

Wasp is a full-stack web framework that generates React + Node.js apps from a simple DSL. What You Get for Free Full-stack in one file — define routes, queries, actions, auth in .wasp config React frontend — generated with best practices Node.js backend — Express + Prisma, auto-generated Authentication — email/password, Google, GitHub (one line of config) Database — Prisma ORM with automatic migrations Full-stack type safety — TypeScript end-to-end Jobs — background jobs and cron scheduling Email sending — built-in email support One-click deploy — Fly.io deployment built in AI-generated apps — usemage.ai generates full Wasp apps from prompts Quick Start curl -sSL https://get.wasp-lang.dev/installer.sh | sh wasp new myapp cd myapp && wasp start // main.wasp — this generates your entire app app myApp { title: "My App", auth: { userEntity: User, methods: { google: {} } } } route HomeRoute { path: "/", to: HomePage } page HomePage { component: import { Home } from "@src/pages/Home" } query

Continue reading on Dev.to React

Opens in a new tab

Read Full Article
6 views

Related Articles