vike-solid

The vike-solid package is a Vike extension that integrates Solid in a full-fledged manner, providing a DX like a regular frontend framework such as Solid Start.

Version history: CHANGELOG.md
Examples: Bati and examples/
Source code: GitHub > vikejs/vike-solid

The documentation for using vike-solid can be found throughout this website (vike.dev).

The guides, such as Guides > Data Fetching, assume you're using Vike with vike-react, vike-vue, or vike-solid. If you aren't then see the sections Without vike-{react,vue,solid} such as API > useData() > Without vike-{react,vue,solid}.

You can integrate Solid yourself instead of using vike-solid, see Integration > Solid.

Scaffold new vike-solid app

Use Bati for creating new apps.

If you select Solid then Bati scaffolds a Vike + vike-solid app.

Add vike-solid to existing Vike app

To add vike-solid to an existing Vike app: install the vike-solid npm package (e.g. $ npm install vike-solid) then extend your existing +config.js file (or create one) with vike-solid:

// /pages/+config.js
 
import vikeSolid from 'vike-solid/config'
 
export default {
  // ...
  extends: [vikeSolid] 
}

You can then use new settings introduced by vike-solid:

// /pages/+config.js
 
import vikeSolid from 'vike-solid/config'
 
export default {
  // ...
 
  // Setting to toggle SSR
  ssr: false, 
 
  extends: [vikeSolid]
}

Under the hood

The vike-solid extension is only 542 lines of code (as of Mai 2024). It's simple, readable, and highly polished.

Reading the source code of vike-solid is very much an option for understanding, debugging, and/or contributing.

Contributions are welcome!

Essentially vike-solid does this:

It implements the following:

For a better overview, see the following lists instead. (They also include all settings and hooks created by vike-solid.)

See also