···11-# SolidStart
11+# Pinboarding
2233-Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com);
33+See this live on [pinboard.ing](https://pinboard.ing)!
4455-## Creating a project
66-77-```bash
88-# create a new project in the current directory
99-npm init solid@latest
1010-1111-# create a new project in my-app
1212-npm init solid@latest my-app
1313-```
55+Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com);
146157## Developing
1681717-Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
99+Once you've installed dependencies with `deno install --allow-scripts`, start a development server:
18101911```bash
2020-npm run dev
2121-2222-# or start the server and open the app in a new browser tab
2323-npm run dev -- --open
1212+deno task dev
2413```
2525-2626-## Building
2727-2828-Solid apps are built with _presets_, which optimise your project for deployment to different environments.
2929-3030-By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different preset, add it to the `devDependencies` in `package.json` and specify in your `app.config.js`.
3131-3232-## This project was created with the [Solid CLI](https://github.com/solidjs-community/solid-cli)