Building a SSR framework from Scratch

There's also a video podcast of this post with more information.
Have you ever wondered how frameworks like NextJS work under the hood? Today we will be building a scaled down version of NextJS.
Before we get started, let's take a look at the end result:
export const getServerSideProps = async ({ prisma }) => {
let user = await prisma.user.findFirst();
…
Keep reading with a 7-day free trial
Subscribe to zach.codes to keep reading this post and get 7 days of free access to the full post archives.