Tags: babel

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.