wasp/web/blog/2022-12-08-fast-fullstack-chatgpt.md
2023-05-23 14:29:54 +02:00

3.3 KiB
Raw Blame History

title authors tags
Watch us build a *truly* full-stack app in just 9 minutes w/ Wasp & ChatGPT 🚀 🤯
vinny
wasp
ai
chatgpt
fullstack
language

import Link from '@docusaurus/Link'; import useBaseUrl from '@docusaurus/useBaseUrl';

import InBlogCta from './components/InBlogCta'; import WaspIntro from './_wasp-intro.md'; import ImgWithCaption from './components/ImgWithCaption'



Theres a lot of hype around ChatGPT at the moment, and for good reason. Its amazing. But theres also some very valid criticism: that its simply taking the grunt work out of programming by writing boilerplate for us, which we as developers have to maintain!

PG is totally right in his remark above, but what he doesnt realize is that there are languages out there that attempt to overcome this very problem, and Wasp is one of them.

What makes Wasp unique is that its a framework that uses a super simple language to help you build your web app: front-end, server, and deployment. But its not a complicated language like Java or Python, its more similar to SQL or JSON, so the learning curve is really quick (technically, its a Domain Specific Langauge or DSL).

Check it out for yourself:

app todoApp {
  title: "ToDo App",/* visible in tab */

  auth: {/* full-stack auth out-of-the-box */
    userEntity: User,
    externalAuthEntity: SocialLogin,
    methods: {
      usernameAndPassword: {},
      google: {}
    }
  }
}

route RootRoute { path: "/", to: MainPage }
page MainPage {
	/* import your React code */
  component: import Main from "@client/Main.js"
}

With this simple file above, Wasp will continually compile a truly full-stack web app for you, with a React front-end, and an ExpressJS server. Youre free to then build out the important features yourself with React, NodeJS, Prisma, and react-query.

The great part is, you can probably understand the Wasp syntax without even referencing the docs. Which means AI can probably work with it easily as well. So rather than having AI create a ton of boilerplate for us, we thought “can ChatGPT write Wasp?” If it can, all we need is to have it create that one file, and then the power of Wasp will take care of the rest. No more endless boilerplate!

So thats exactly what we set to find out in the video above. The results? Well lets just say they speak for themselves.