quicktype
quicktype copied to clipboard
[BUG]: Uncaught ReferenceError: process is not defined in the browser
After compiling with esbuild, I got this error when running in the browser.
My code is very simple:
// json-to-class.js
import {quicktype, InputData, jsonInputForTargetLanguage,} from "quicktype-core";
(function (root) {
...
})()
The error comes from: input/io/NodeIO.js
How to solve this problem?