
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@mcansh/remix-fastify
Advanced tools
These are the currently available templates that you can get jump started with:
Using the Remix Vite plugin (recommended)
npx create-remix@latest --template mcansh/remix-fastify/examples/vite
The basic example using the old Remix compiler
npx create-remix@latest --template mcansh/remix-fastify/examples/basic
Get started with an existing boilerplate that integrates React Router 7 & Fastify:
pnpm add @mcansh/remix-fastify fastify source-map-support get-port chalk @fastify/{middie,static}
pnpm add -D @types/source-map-support tsx
in the root of your project create a server directory and add index.ts
server/index.ts
import chalk from "chalk";
import { remixFastify } from "@mcansh/remix-fastify";
import { fastify } from "fastify";
import sourceMapSupport from "source-map-support";
import getPort, { portNumbers } from "get-port";
sourceMapSupport.install();
let app = fastify();
await app.register(remixFastify);
let host = process.env.HOST || "127.0.0.1";
let desiredPort = Number(process.env.PORT) || 3000;
let portToUse = await getPort({
port: portNumbers(desiredPort, desiredPort + 100),
});
let address = await app.listen({ port: portToUse, host });
if (portToUse !== desiredPort) {
console.warn(
chalk.yellow(
`⚠️ Port ${desiredPort} is not available, using ${portToUse} instead.`,
),
);
}
console.log(chalk.green(`✅ app ready: ${address}`));
Update the package.json dev, start and build commands
"build": "remix vite:build && tsc --project ./tsconfig.server.json",
"dev": "cross-env NODE_ENV=development tsx --watch-path ./server/index.ts ./server/index.ts",
"start": "cross-env NODE_ENV=production node ./server/index.js",
Add the tsconfig.server.json file to the root of the project
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"include": ["./server/**/*.ts"],
"exclude": ["node_modules"],
"compilerOptions": {
"noEmit": false,
"outDir": "./server"
}
}
run pnpm dev to test that the server starts
FAQs
Fastify server request handler for Remix and React Router
The npm package @mcansh/remix-fastify receives a total of 25,076 weekly downloads. As such, @mcansh/remix-fastify popularity was classified as popular.
We found that @mcansh/remix-fastify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.