Skip to content
This repository was archived by the owner on Jul 25, 2025. It is now read-only.

Releases: mjackson/remix-the-web

lazy-file v3.4.0

10 Jun 23:05
Compare
Choose a tag to compare
  • Add /src to npm package, so "go to definition" goes to the actual source
  • Use one set of types for all built files, instead of separate types for ESM and CJS
  • Build using esbuild directly instead of tsup

form-data-parser v0.8.0

10 Jun 22:56
Compare
Choose a tag to compare
  • Add /src to npm package, so "go to definition" goes to the actual source
  • Use one set of types for all built files, instead of separate types for ESM and CJS
  • Build using esbuild directly instead of tsup

file-storage v0.7.0

10 Jun 23:33
Compare
Choose a tag to compare
  • Add /src to npm package, so "go to definition" goes to the actual source
  • Use one set of types for all built files, instead of separate types for ESM and CJS
  • Build using esbuild directly instead of tsup

fetch-proxy v0.3.0

10 Jun 23:38
Compare
Choose a tag to compare
  • Add /src to npm package, so "go to definition" goes to the actual source
  • Use one set of types for all built files, instead of separate types for ESM and CJS
  • Build using esbuild directly instead of tsup

tar-parser v0.3.0

06 Jun 01:01
Compare
Choose a tag to compare
  • Add /src to npm package, so "go to definition" goes to the actual source
  • Use one set of types for all built files, instead of separate types for ESM and CJS
  • Build using esbuild directly instead of tsup

node-fetch-server v0.7.0

06 Jun 00:43
Compare
Choose a tag to compare
  • Add /src to npm package, so "go to definition" goes to the actual source
  • Use one set of types for all built files, instead of separate types for ESM and CJS
  • Build using esbuild directly instead of tsup

headers v0.11.1

06 Jun 00:45
Compare
Choose a tag to compare
  • Do not minify builds
  • Remove some test files from the build

headers v0.11.0

06 Jun 00:01
Compare
Choose a tag to compare
  • Add /src to npm package, so "go to definition" goes to the actual source
  • Use one set of types for all built files, instead of separate types for ESM and CJS
  • Build using esbuild directly instead of tsup

node-fetch-server v0.6.1

07 Feb 01:20
Compare
Choose a tag to compare
  • Update typings and docs for http/2 support

node-fetch-server v0.6.0

06 Feb 20:12
Compare
Choose a tag to compare
  • Add http/2 support
import * as http2 from 'node:http2';
import { createRequestListener } from '@mjackson/node-fetch-server';

let server = http2.createSecureServer(options);

server.on(
  'request',
  createRequestListener((request) => {
    let url = new URL(request.url);

    if (url.pathname === '/') {
      return new Response('Hello HTTP/2!', {
        headers: {
          'Content-Type': 'text/plain'
        },
      });
    }

    return new Response('Not Found', { status: 404 });
  }),
);