
Security News
The Nightmare Before Deployment
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.
@prpc/solid
Advanced tools
Package for easily creating server rpc functions in solid-start with goodies baked in
SolidSart adapter for pRPC.
pnpm add @prpc/solid@latest @prpc/vite@latest @tanstack/solid-query@beta
Add the following to your vite config
import prpc from '@prpc/vite';
import solid from 'solid-start/vite';
...
export default defineConfig(() => {
return {
...
plugins: [
prpc(), // Important that this plugin runs before the solid one!
solid()
]
...
}
})
// @refresh reload
import { QueryProvider } from '@prpc/solid'
import { Suspense } from 'solid-js'
import {
Body,
ErrorBoundary,
FileRoutes,
Head,
Html,
Link,
Meta,
Routes,
Scripts,
Title,
} from 'solid-start'
export default function Root() {
return (
<Html lang='en'>
<Head>
<Title>pRPC Basic</Title>
<Meta charset='utf-8' />
<Meta name='viewport' content='width=device-width, initial-scale=1' />
<Meta name='theme-color' content='#026d56' />
<Meta name='description' content='pRPC Basic example' />
<Link rel='icon' href='/favicon.ico' />
</Head>
<Body>
<QueryProvider>
<Suspense>
<ErrorBoundary>
<Routes>
<FileRoutes />
</Routes>
</ErrorBoundary>
</Suspense>
</QueryProvider>
<Scripts />
</Body>
</Html>
)
}
Read more - docs
FAQs
Package for easily creating server rpc functions in solid-start with goodies baked in
We found that @prpc/solid 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
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.

Research
/Security News
Impostor NuGet package Tracer.Fody.NLog typosquats Tracer.Fody and its author, using homoglyph tricks, and exfiltrates Stratis wallet JSON/passwords to a Russian IP address.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.