DEV Community

Discussion on: What was your win this week?

Collapse
 
nickytonline profile image
Nick Taylor • Edited

I got back into streaming on Twitch after about a month and a half!

I hung with @ajcwebdev today talking about all things RedwoodJS!

GitHub logo redwoodjs / redwood

The App Framework for Startups

Redwood

by Tom Preston-Werner, Peter Pistorius, Rob Cameron, David Price, and more than 250 amazing contributors (see end of file for a full list).

Redwood is an opinionated, full-stack, JavaScript/TypeScript web application framework designed to keep you moving fast as your app grows from side project to startup.

At the highest level, a Redwood app is a React frontend that talks to a custom GraphQL API. The API uses Prisma to operate on a database. Out of the box you get tightly integrated testing with Jest, logging with Pino, and a UI component catalog with Storybook. Setting up authentication (like Auth0) or CSS frameworks (like Tailwind CSS) are a single command line invocation away. And to top it off, Redwood's architecture allows you to deploy to either serverless providers (e.g. Netlify, Vercel) or traditional server and container providers (e.g. AWS Render) with nearly no code changes between the two!

By…