astro/packages/integrations/solid
Ben Holmes c706d845eb
No 👏 more 👏 server 👏 restarts 👏 on 👏 config 👏 changes (#4578)
* feat: restart config on add, remove, update

* fix: reload for root project configs only

* fix: throw when userConfigPath can't resolve

* chore: changeset

* wip: remove normalizePath before writeFile

* refactor: invalidateWithCache -> isConfigReload

* wip: mustExist?

* debug: config loaded successfully

* debug: more logs

* debug: MORE logging

* fix: normalize resolved config path

* debug: yet MORE logging

* chore: bump proload

* fix: use file path, not URL.pathname

* Revert "wip: mustExist?"

This reverts commit 8ca8662132532dcdc9fd120868e615ddc60f498e.

* chore: remove console log

* feat: cleanup restart message, better invalid config handling

* chore: update lockfile

* chore: fix types

* fix: throw helpful error when config does not exist

* docs: remove "restart dev server" from integrations

* docs: make sure to restart -> try restarting

Co-authored-by: Nate Moore <nate@astro.build>
2022-09-09 11:58:16 -04:00
..
src [ci] format 2022-08-10 19:13:28 +00:00
CHANGELOG.md [ci] release (#4495) 2022-08-26 13:01:30 -04:00
package.json [ci] release (#4495) 2022-08-26 13:01:30 -04:00
README.md No 👏 more 👏 server 👏 restarts 👏 on 👏 config 👏 changes (#4578) 2022-09-09 11:58:16 -04:00
tsconfig.json Astro Integration System (#2820) 2022-03-18 15:35:45 -07:00

@astrojs/solid-js 💙

This Astro integration enables server-side rendering and client-side hydration for your SolidJS components.

Installation

There are two ways to add integrations to your project. Let's try the most convenient option first!

astro add command

Astro includes a CLI tool for adding first party integrations: astro add. This command will:

  1. (Optionally) Install all necessary dependencies and peer dependencies
  2. (Also optionally) Update your astro.config.* file to apply this integration

To install @astrojs/solid-js, run the following from your project directory and follow the prompts:

# Using NPM
npx astro add solid
# Using Yarn
yarn astro add solid
# Using PNPM
pnpm astro add solid

If you run into any issues, feel free to report them to us on GitHub and try the manual installation steps below.

Install dependencies manually

First, install the @astrojs/solid-js integration like so:

npm install @astrojs/solid-js

Most package managers will install associated peer dependencies as well. Still, if you see a "Cannot find package 'solid-js'" (or similar) warning when you start up Astro, you'll need to install SolidJS:

npm install solid-js

Now, apply this integration to your astro.config.* file using the integrations property:

astro.config.mjs

import solid from '@astrojs/solid-js';

export default {
  // ...
  integrations: [solid()],
}

Getting started

To use your first SolidJS component in Astro, head to our UI framework documentation. You'll explore:

  • 📦 how framework components are loaded,
  • 💧 client-side hydration options, and
  • 🪆 opportunities to mix and nest frameworks together

Also check our Astro Integration Documentation for more on integrations.