Deno env vars
In a Deno/Fresh app I have a config file that provides access to env vars, however when I try to run my migrations via
which in the deno.json file runs
kysely migrate:latest
I am told that Deno is not defined
. Is this due to Kysley being a node based lib?
How can I make this work?
6 Replies
Perhaps use
import process from "node:process"
then use process.env
if it is running from a Node context.are you calling
deno run
or deno task
to run the task from the deno file? If you're using the kysely CLI then it most likely expects to run in a node environment and you'd need to access to env variables as if you were in one for the sake of the migration. Alternatively, I was able to get Kysely migrations to work in Deno by just writing a migrator defined in their docs here: https://kysely.dev/docs/migrations#running-migrationsMigrations | Kysely
Migration files
@zamfofex using node:process did work, not ideal though
@Mr.Possumz I was using deno run (wasn't aware of deno task..still learning). I ended up using the migrarion file that you linked to, which allowed me to remove the kysely-ctl lib.
Thanks for the help 🙂
To be fair, I saw someone mention that deno run and deno task can be used interchangeably to run tasks now. If that's true it's new to me! It used to be use had to call
deno task
specifically@Mr.Possumz
kysely CLI then it most likely expects to run in a node environmentThat's not true. The aim is to be runnable in Deno too. A lot of thought/effort has been put into cross-JS runtime compatibility. CI is set with 3 variants just for Deno: https://github.com/kysely-org/kysely-ctl/blob/main/.github/workflows/test.yml#L143-L194 Latest release was Deno-specific: v0.12.1 - Deno remote imports. Maybe I got it wrong somewhere or missed something. I don't use Deno in production. This is the point where the community that does use Deno, submits issues OR comes to our Discord and we get stuff solved. @iso
Kysley being a node based libThat's not accurate. Kysely is built in Node.js, but has 0 dependencies and doesn't use any Node.js-specific APIs. CI is set to verify that it works with Deno v1 and v2: https://github.com/kysely-org/kysely/blob/master/.github/workflows/test.yml#L67-L100
@Igal My apologies. I did not realize that Kysely-ctl supported Deno. I'll have to see if I can get it running in my own projects again!