Duncan
Migrating from Node to Deno
I have been tasked with researching the feasibility of migrating our react/nextjs app from node/npm to deno.
I have done the following so far:
1) Cloned the repo
2) deno install
3) deno task dev
4) things seem to work fine
5) Start opening files and see that deno complains a lot about a lack of file extensions plus needing curly braces which is due to ECMA script modules. Will I need to create a script to go through entire project fixing the imports?
6) Also see that the @ we use for our src path alias doesn't work.
Not sure what the recommended steps are to migrate from a project like this (medium sized). I've googled migrating but only found 1 article and that wasn't particularly helpful
5 replies