An embedded app starter template to get up and ready with Shopify app development with Next.js and Prisma.
I've included notes on this repo which goes over the repo on why certain choices were made.
The VSCode extension has a collection of snippets that is used to quickly generate boilerplate code for creating /api
, /proxy_route
, webhook functions and client provider endpoints to speed up your dev process.
-
@kinngh/shopify-node-express-mongodb-app
: Shopify app starter repo built with Express.js, React.js and Vite. -
[WIP]
npx create-shop-app@latest
: A CLI tool to generate embedded Shopify app boilerplate with a tech stack of your own.
- Next.js 13
- Prisma (Postgresql)
Building with Express and React was great but eventually there comes a time where you have to remind yourself that you need to get on with the times and use what's new and stable. Serverless made sense, and Next.js made even more.
- Refer to SETUP