title |
---|
Quick start |
Experience Solid in your browser by visiting our interactive playground.
Additionally, we offer a JavaScript and Typescript Stackblitz starters, which provide a web-based development environment to get you started.
:::info[Prerequisites]
- Familiarity with the command line
- Install [Node.js](https://nodejs.org/en) or [Deno](https://deno.com)
:::
Solid offers convenient project templates that can help kickstart your development. To get an application running, follow the steps below based on the language you prefer to use.
- Run the following command in your terminal to get the JavaScript starter template:
degit solidjs/templates/js my-app
- Navigate to your application's directory:
cd my-app
- Install the necessary dependencies:
- Run the application:
dev
This will start the development server.
Now, you can open your browser and navigate to localhost:3000
to see your application running.
- To use a TypeScript template, run the following command in your terminal:
degit solidjs/templates/ts my-app
- Navigate to your application's directory:
cd my-app
- Install the necessary dependencies:
- Run the application:
dev
This will start the development server.
Now, you can open your browser and navigate to localhost:3000
to see your application running.
Solid offers a variety of Vite templates to streamline your development process. These resources are available on GitHub.