Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Minimal boilerplate for writing Web Applications using React, Webpack, TypeScript in 2020

Notifications You must be signed in to change notification settings

codesbiome/react-webpack-typescript-2020

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Webpack Typescript (2020) [Deprecated]

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.


🚨 Deprecated 🚨

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


Core Features

  • 🌀 TypeScript Usage
  • 🎨 CSS Loader
  • 🎨 SASS/SCSS Loader
  • 🆎 Fonts Loader
  • 🔗 Image / URL loader
  • 🧰 Custom Aliases for Path
  • 🔱 Webpack & Configuration
  • 🔥 Hot Module Replacement (Live Reload)

Installation

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

Development

To develop and run your application, you need to run following command

# Run web development server for development
yarn dev

Production

To build the production ready files using minification etc.

# Build production ready files
yarn build