
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
@orval/solid-start
Advanced tools
SolidStart client for Orval - generates type-safe API client code using SolidStart primitives.
query() for GET requestsaction() for mutations (POST, PUT, PATCH, DELETE)npm install @orval/solid-start
# or
bun add @orval/solid-start
# or
pnpm add @orval/solid-start
In your Orval configuration file:
import { defineConfig } from 'orval';
export default defineConfig({
petstore: {
output: {
target: './src/api/endpoints.ts',
schemas: './src/api/model',
client: 'solid-start',
},
input: {
target: './petstore.yaml',
},
},
});
For GET requests, Orval generates SolidStart queries:
export const PetstoreApi = {
getPets: query(async (limit?: number) => {
const response = await fetch(`/api/pets?limit=${limit}`, {
method: 'GET',
headers: { 'Content-Type': 'application/json' },
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json() as Promise<Pet[]>;
}, 'getPets'),
};
For mutations (POST, PUT, PATCH, DELETE), Orval generates SolidStart actions:
export const PetstoreApi = {
createPet: action(async (pet: Pet) => {
const response = await fetch(`/api/pets`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(pet),
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json() as Promise<Pet>;
}, 'createPet'),
};
import { PetstoreApi } from './api/endpoints';
// In a component
function Pets() {
const pets = createAsync(() => PetstoreApi.getPets(10));
return (
<div>
<For each={pets()}>
{(pet) => <div>{pet.name}</div>}
</For>
</div>
);
}
// For mutations
function CreatePet() {
const createPet = useAction(PetstoreApi.createPet);
const handleSubmit = async (formData: FormData) => {
await createPet({ name: formData.get('name') as string });
};
return <form action={handleSubmit}>...</form>;
}
query, action) for server-side data fetchingcreateQuery, createMutation) for client-side data managementChoose solid-start when you want to leverage SolidStart's built-in server functions and caching.
Choose solid-query when you need advanced client-side query management features like automatic refetching, optimistic updates, etc.
FAQs
Unknown package
We found that @orval/solid-start demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.