Cannot find module 'drizzle-kit'
Hi, I'm following this Deno guide to add Drizzle to my Deno application. I'm starting from scratch, so I don't have any tables in my Postgres DB. When I get to the point where I need to run
deno -A npm:drizzle-kit generate
, I get the following error:
Any help would be greatly appreciated. Thanks!1 Reply
You need to run
deno run -A --node-modules-dir npm:drizzle-kit generate
.
Drizzle-kit needs the node_modules folder to work correctly