Configure Express / React / Babel to Work with React Universal Component

Tim Kindberg
InstructorTim Kindberg
Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated 5 years ago

We’ll make the configuration changes needed in our express server, babel configuration, and react app code to get universal components working. We'll go from typical configurations to a "universal" configuration. We'll need our express app to use the webpack hot server middleware to serve our custom html. We'll use the flushChunks method to discover which javascript and css files actually need to be sent down to the client on initial render. We need to add the stage-2 babel plugin so that we can use the import function. And we can't forget to hydrate our React app on the client after we receive the serverside-rendered html.

eggheadgl
eggheadgl
~ 6 years ago

Why you use for server/index.js require but for server/render.js import?

Tim Kindberg
Tim Kindberginstructor
~ 6 years ago

@eggheadgl no good reason. Mostly because I'd copied the server/index.js file from a basic webpack example and the server/render.js I wrote from scratch.

Michal
Michal
~ 6 years ago

hey, after cloning repository with this lesson and trying to start the server I get this error Error: webpack.optimize.CommonsChunkPlugin has been removed, please use config.optimization.splitChunks instead could you update the code that it will be compilable ?

Markdown supported.
Become a member to join the discussionEnroll Today