0.0.2 • Published 1 year ago

remix-fastify v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

remix-fastify

import Fastify from 'fastify';
import { createRequestHandler } from 'remix-server/fastify';

const fastify = Fastify();

fastify.all(
  '*',
  createRequestHandler({
    build: () => import('./build/server/index.js'),
  })
);

await fastify.listen({ port: 3000 });
0.0.2

1 year ago

0.0.1

2 years ago