
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This is a remix.run adapter to deploy applications to PartyKit servers.
You can create a new PartyMix app with the following command:
npx create-remix@latest ./my-remix-app --template partykit/remix-starter
That's it! Alternately, you can add PartyMix to an existing Remix app with the following steps:
First, install the dependencies:
npm install partykit partymix
Define your PartyKit server like so:
// src/server.js
import { createRequestHandler } from "partymix";
import * as build from "@remix-run/dev/server-build";
const handleRequest = createRequestHandler({ build });
export default class MyRemix {
static onFetch(request, lobby, ctx) {
return handleRequest(request, lobby, ctx);
}
}
And your partykit.json like so:
// partykit.json
{
"name": "partymix",
"main": "build/server.js", // point to the built version of your server
"serve": "public"
}
And your remix.config.js like so:
// remix.config.js
/** @type {import('@remix-run/dev').AppConfig} */
export default {
ignoredRouteFiles: ["**/.*"],
server: "./src/server.js",
serverConditions: ["partykit", "workerd", "worker", "browser"],
serverMainFields: ["browser", "module", "main"],
serverModuleFormat: "esm",
serverPlatform: "neutral"
// ...
};
You can then run your app locally:
npx remix dev --manual -c "npx partykit dev"
And then deploy the whole thing with:
npx remix build && npx partykit deploy
(This adapter based on the original template for Cloudflare Workers)
FAQs
PartyKit + Remix = PartyMix
The npm package partymix receives a total of 716 weekly downloads. As such, partymix popularity was classified as not popular.
We found that partymix demonstrated a not healthy version release cadence and project activity because the last version was released 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.