Parcel React Typescript ESLint Prettier Starter
How to install Parcel is up to you
- Globally on your machine
yarn global add parcel-bundler
- Or by installing it as a project dependency. Execute from the project folder:
yarn add parcel-bundler --dev
On your project folder run
yarn
And then to run the app in the development mode:
yarn dev
At the terminal, you will see where the site is running. By default, it runs at http://localhost:1234, but if it is not possible to run at port 1234 a new port is set up automatically
Tweak the configuration file the way you prefer, and start to code 👩💻