remix-run/remix
 Watch   
 Star   
 Fork   
13 hours ago
remix
5 days ago
remix
25 days ago
remix

component v0.2.1

  • Fix node replacement

    Anchors were being calculated incorrectly because it removed the old node before inserting the new one, Now it correctly uses the old node as the anchor for insertion and inserts the new node before removing the old one.

25 days ago
remix

component v0.2.0

  • This is the initial release of the component package.

    See the README for more information.

25 days ago
remix

response v0.2.1

  • createFileResponse now includes charset in Content-Type for text-based files.
25 days ago
remix

route-pattern v0.16.0

  • BREAKING CHANGE: Rename RegExpMatcher to ArrayMatcher
25 days ago
remix

fetch-router v0.14.0

  • BREAKING CHANGE: Remove BuildRequestHandler type. Use RequestHandler type directly instead.

  • BREAKING CHANGE: Remove T generic parameter from RequestHandler type. Request handlers always return a Response.

  • Export the MatchData type from the public API. This type is required when creating custom matchers for use with the router's matcher option.

25 days ago
remix

node-fetch-server v0.13.0

  • Use the :authority header to set the URL of http/2 requests.
25 days ago
remix

mime v0.2.0

  • Add detectContentType(extension) function that returns a Content-Type header value with charset for text-based types.

  • Add mimeTypeToContentType(mimeType) function that converts a MIME type to a Content-Type header value, adding charset for text-based types.

2025-12-07 04:36:02
remix

session-middleware v0.1.1

  • Use response.headers.append('Set-Cookie', ...) instead of response.headers.set('Set-Cookie', ...) to not overwrite cookies set by other middleware/handlers