fix(website): correct the no-build claim in the Remix 3 comparison - #1465
Merged
Conversation
The page headlined Remix 3 as a "No Build" framework and listed that as shared ground. Checked against the Remix source: Remix 3 is bundler-free and has no build command, but it is not compile-free. Components are authored in JSX, so its asset server compiles every browser module on demand through oxc, rewrites imports, runs CSS through lightningcss, and in production lowers syntax to declared browser targets, minifies, and fingerprints URLs, all of which the app configures. Retitle around "No Bundler", state the shared ground accurately, and add a first difference section on how much translation each framework puts between the source and the browser. Adds an FAQ entry answering the question directly, which is also the query this page should rank for.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
/compare/webjs-vs-remixheader sold Remix 3 as a "No Build" framework and listed that as shared ground with WebJs. Verified against the Remix source (the localremix-run/remixclone at1f3d348): Remix 3 is bundler-free and no app or demo has a build script, but it is not compile-free.packages/assetsis a request-time compiler:oxc-transformfor TS and JSX,oxc-resolverpluses-module-lexerfor import rewriting,lightningcssfor CSS,oxc-minifyfor production, plus browser-target lowering, source maps, and fingerprinted URLs.Changes:
Content-only change to one markdown file under
compare/.