Khushraj Rathod
Khushraj Rathod
@muckSponge Any updates on this?
Hey, I like the idea, but unfortunately I'm not really focusing on this project any longer. If you could make a PR, I'd be happy to review it!
Yeah this should be possible, will add to todo
Hi, unfortunately this is the case because the app directly uses the URL to fetch the replit-deploy.json file from the GitHub repo. This is technically possible to do, but it...
> Did you already use Deno in production? > Let us know if you are already using it in production. I'm already using Deno in production 👀 The DB drivers...
@matthewmueller I'd love to help! Which node dependencies does Prisma use? I don't see any in the package.json apart from devDependencies
Seems doable! I have some of sindre's promise-fun modules already [ported over](https://github.com/KhushrajRathod/DenoModules), and you seem to be using those I'll work on this, lets see when we can get Prisma...
@matthewmueller Okay so after messing around a bit here's what I've gathered - TypeScript will be a problem. Deno doesn't resolve .d.ts files by default, and needs explicit annotations to...
@matthewmueller Almost everything in `@prisma/client/runtime/index.js` exports dynamically, here's a snippet ```js let __create = Object.create; let __defProp = Object.defineProperty; let __getProtoOf = Object.getPrototypeOf; let __hasOwnProp = Object.prototype.hasOwnProperty; let __getOwnPropNames =...
>``` >$ deno run --allow-env --allow-read --allow-net npm:next info >error: Uncaught TypeError: _os.default.version is not a function > at nextInfo (file:///Users/charlie/Library/Caches/deno/npm/registry.npmjs.org/next/13.0.3/dist/cli/next-info.js:68:30) > at file:///Users/charlie/Library/Caches/deno/npm/registry.npmjs.org/next/13.0.3/dist/bin/next:140:44 >``` This is caused because deno's...