This repository was archived by the owner on Jul 25, 2025. It is now read-only.
Releases: mjackson/remix-the-web
Releases · mjackson/remix-the-web
lazy-file v3.4.0
- 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
- 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
- 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
- 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
- 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
- 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
- Do not minify builds
- Remove some test files from the build
headers v0.11.0
- 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
- Update typings and docs for http/2 support
node-fetch-server v0.6.0
- 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 });
}),
);