News
deno: create a React app
by admin on Jul.29, 2022, under News
Under macOS we can install deno as follows:
brew install deno
After that we need the experimental create-react-app package, which acts as a substitution to npx create-react-app:
deno install -A –unstable -n deno-create-react-app https://deno.land/x/create_react_app/mod.ts
deno-create-react-app init my-app
cd my-app
deno-create-react-app run
Voila! Our React app is up and running.