Create new SolidJS project

This guide will help you to create new whole new SolidJS project from scratch by using create-react-app
tool. All you need is installed Nodejs on your computer. Then we can type a simple command to create new one.
- Create new React App with
create-react-app
tool1
npx create-react-app <app-name> --template typescript
- Get dependencies
1 2
cd <app-name> npm install
- Start running app
1
npm start