liljudd-website/README.md

31 lines
870 B
Markdown
Raw Normal View History

# SolidStart
2023-10-18 15:58:15 +00:00
Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com);
2023-11-09 12:26:24 +00:00
## Creating a project
2023-10-18 15:58:15 +00:00
```bash
# create a new project in the current directory
npm init solid@latest
2023-10-18 15:58:15 +00:00
# create a new project in my-app
npm init solid@latest my-app
2023-11-09 12:26:24 +00:00
```
2023-10-18 15:58:15 +00:00
## Developing
2023-10-18 15:58:15 +00:00
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
2023-10-18 15:58:15 +00:00
```bash
npm run dev
2023-10-18 15:58:15 +00:00
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
2023-10-18 15:58:15 +00:00
## Building
2023-10-18 15:58:15 +00:00
Solid apps are built with _adapters_, which optimise your project for deployment to different environments.
2023-10-18 15:58:15 +00:00
By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different adapter, add it to the `devDependencies` in `package.json` and specify in your `vite.config.js`.