Converts Node.js-based projects to Deno projects.
- your plugin should be written for ESM
- imports should not be shortened (e.g.
./myFolder
containingindex.ts
should be written as./myFolder/index
) - there should be an entry point for
fetch
, exported as a default node
imports have to be explicit, e.g.import { Buffer } from 'node:buffer'
if you want to useBuffer
otherwise the plugin will crash during runtime