user1941537
user1941537

Reputation: 6685

Is there a create-react-app alternative for Preact?

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

Answers (1)

Benjamin Barbé
Benjamin Barbé

Reputation: 590

Documentation here

### 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

Related Questions