Reputation: 6685
I'm thinking of switching from React to Preact.
I'm just wondering if there is a create-react-app
alternative for Preact?
Upvotes: 0
Views: 221
Reputation: 590
### Preact instalation
npm install -g preact-cli
### create react app equivalent
preact create default my-project
### Go into the generated project folder
cd my-project/
### Start the devserver
npm start
Upvotes: 2