You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@solidjs/start

Package Overview
Dependencies
Maintainers
2
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solidjs/start

Source
npmnpm
Version
1.2.1
Version published
Weekly downloads
27K
-27.2%
Maintainers
2
Weekly downloads
 
Created
Source

Banner

Version Downloads Stars Discord Reddit

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.

Core Features

  • All Rendering Modes:
    • Server-Side Rendering (SSR) with sync, async, and stream modes
    • Client-Side Rendering (CSR) with the possibility of being page/component scoped
    • Static Site Generation (SSG) with route pre-rendering
  • TypeScript: Full integration for robust, type-safe development
  • File-Based Routing: Intuitive routing based on your project’s file structure
  • API Routes: Dedicated server-side endpoints for seamless API development
  • Streaming: Efficient data rendering for faster page loads
  • Build Optimizations: Code splitting, tree shaking, and dead code elimination
  • Deployment Adapters: Easily deploy to platforms like Vercel, Netlify, Cloudflare, and more

Getting Started

Installation

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

Project Structure

  • public/: Static assets like icons, images, and fonts
  • src/: Core application (aliased to ~/)
    • routes/: File-based routing for pages and APIs
    • app.tsx: Root component of your application
    • entry-client.tsx: Handles client-side hydration
    • entry-server.tsx: Manages server-side request handling
  • Configuration Files: app.config.ts, package.json, and more

Learn more about routing

Adapters

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

Building

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.

Contributing

FAQs

Package last updated on 20 Dec 2025

Did you know?

Socket

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.

Install

Related posts