Minimal boilerplate for writing Web Applications using React, Webpack, TypeScript.
This project makes use of "latest" packages like react
, typescript
with webpack
to serve the best environment for development.
This repository is Deprecated and will no longer be receiving any further updates.
If you're looking for an updated version of React Webpack Typescript boilerplate
, there is a new maintained project available in here: https://github.com/codesbiome/react-webpack-typescript-2021
- 🌀 TypeScript Usage
- 🎨 CSS Loader
- 🎨 SASS/SCSS Loader
- 🆎 Fonts Loader
- 🔗 Image / URL loader
- 🧰 Custom Aliases for Path
- 🔱 Webpack & Configuration
- 🔥 Hot Module Replacement (Live Reload)
To install this boilerplate you need to run following commands
# Clone the repository on your hard drive
git clone https://github.com/codesbiome/react-webpack-typescript-2020
cd react-webpack-typescript-2020
# Install dependencies using "Yarn" package manager
# NPM can also be used to install usign 'npm install' command
yarn install
To develop and run your application, you need to run following command
# Run web development server for development
yarn dev
To build the production ready files using minification etc.
# Build production ready files
yarn build