Thuan Nguyen
Thuan Nguyen

Love sweet potatoes

Create new SolidJS project

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.

  1. Create new React App with create-react-app tool
    1
    
    npx create-react-app <app-name> --template typescript
    
  2. Get dependencies
    1
    2
    
    cd <app-name>
    npm install
    
  3. Start running app
    1
    
    npm start