Tags: react

React And Webpack Tutorial - Part 5

2019-10-25  11 minute read

Previous

You can find the full repository and all previous commits by clicking here.

Previously, we had just finished updating our project to have seperate development and production configurations. Today we're going to changing the way we create our index.html file, do some cache-busting, and look at serving static files. Let's get started.

React And Webpack Tutorial - Part 4

2019-10-24  9 minute read

Previous

You can find the full repository and all previous commits by clicking here.

Last time we had finished making ourselves a swanky development setup, with a live refreshing server, source maps, and even hot reloading. We're now ready to do some actual developing! But wait, we're still writing in plain old JavaScript. Sure, it might have some fancy new ES2015+ features, but it's still untyped! That just won't do, so today we're going to work on adding TypeScript support to our project.

React And Webpack Tutorial - Part 2

2019-10-22  9 minute read

Previous

You can find the full repository and all previous commits by clicking here.

Welcome back. Last time, we left off with a basic Hello World React app that we had just gotten working by using Webpack to bundle it. Today we're going to convert that to a JSX file and setup a Webpack configuration file.