-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compat: tracking issue for starting a remix project #18326
Comments
Just piling on here - I tried using the Remix template for Deno on 1.35 and am seeing a bunch of errors both on start and when trying to preview the project. https://github.com/remix-run/remix/tree/main/templates/deno Here's what I see in my console upon attempting to run this project.
|
@littledivy please take a look at this issue and see if it can be closed |
Yes, I think this can be closed. This works fine:
DX not ideal, especially the BYONM part but that's been tracked in #22316 |
This issue tracks the problems which blocks starting a new remix project with node.js compat mode of deno.
Issues with
npx create-remix
(wizard for creating a new remix project)TypeError: child_process.execSync is not a function
(used for callingnpm install
in the wizard)Issues with
npm install
in remix projectpostinstall
script ofcore-js-pure
module compat: postinstall fails for some modules duringnpm install
std#2013node -e "try{require('./postinstall')}catch(e){}"
inpostinstall
-e
optionIssues with
npm run dev
in remix projectTypeError: Invalid signal: SIGBREAK
fix(node/process): ignore SIGBREAK binding on non windows std#2014ChildProcess.kill()
with thesignal
parameter feat(node/child_process): supportsignal
parameter forChildProcess.kill
std#2083handle.unref()
is not implemented https://github.com/denoland/deno_std/blob/b81ff8e06a134d4ec8940b0fad1440629b0161e7/node/internal_binding/handle_wrap.ts#L46ref
/unref
methods forDeno.Listener
#13886Not implemented: ChildProcess.unref()
child_process.execFileSync is not a function
used in esbuildCannot read properties of undefined
atreq.connection.remoteAddress
(req.connection is missing) in forwardedTypeError: Cannot read properties of undefined (reading 'encrypted')
atthis.connection.encrypted
in expressTypeError: this._implicitHeader is not a function
atcompression/index.js:103
in expressThe text was updated successfully, but these errors were encountered: