JDJags Dubeyinblog.dubeyjags.cloud·Jun 23 · 4 min readSetup : Postgressql with Prisma and NeonA starter project demonstrating how to use Prisma ORM with a PostgreSQL database using the node-postgres (pg) driver adapter. Prerequisites Node.js v18+ pnpm v10+ A running PostgreSQL instance (loc00
JDJags Dubeyinblog.dubeyjags.cloud·Jun 23 · 8 min readSetup : Monorepo-turborepo-tRPCMulti-repo VS Monorepo Multirepo - react-frontend, express backend, postgress-db, redis server Monorepo - sigle repo > one repo can contain frontent, backend, shared utils and types etc example proj00
JDJags Dubeyinblog.dubeyjags.cloud·Jun 19 · 1 min readTemplate Literals in JavaScriptTemplate Literals is the Javascript Syntax to handle the statement like when we have string with some of var or value included. so we can fix it through this syntax (``). let name = "Jags"; const mess00
JDJags Dubeyinblog.dubeyjags.cloud·May 8 · 2 min readArray Flatten in JavaScriptArray can store all data types of value like, String, number, boolean, object and Array too. yes Arary can store another array in the single value in it. so, If Array has values of another Arrays so 00