
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.
@solidjs/start
Advanced tools
SolidStart brings fine-grained reactivity fullstack with full flexibility. Built with features like unified rendering and isomorphic code execution, SolidStart enables you to create highly performant and scalable web applications.
Explore the official documentation for detailed guides and examples.
Create a SolidStart template project with your preferred package manager
# using npm
npm create solid@latest -- -s
# using pnpm
pnpm create solid@latest -s
# using bun
bun create solid@latest --s
public/: Static assets like icons, images, and fontssrc/: Core application (aliased to ~/)
routes/: File-based routing for pages and APIsapp.tsx: Root component of your applicationentry-client.tsx: Handles client-side hydrationentry-server.tsx: Manages server-side request handlingapp.config.ts, package.json, and moreLearn more about routing
Configure adapters in app.config.ts to deploy to platforms like Vercel, Netlify, Cloudflare, and others
import { defineConfig } from "@solidjs/start/config";
export default defineConfig({
ssr: true, // false for client-side rendering only
server: { preset: "netlify" },
});
Presets also include runtimes like Node.js, Bun or Deno. For example, a preset like node-server enables hosting on your server.
Learn more about defineConfig
Generate production-ready bundles
npm run build # or pnpm build or bun build
After the build completes, you’ll be guided through deployment for your specific preset.
FAQs
Unknown package
The npm package @solidjs/start receives a total of 32,526 weekly downloads. As such, @solidjs/start popularity was classified as popular.
We found that @solidjs/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
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.