Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Deploying to Heroku with Webpack

Webpack is a tool used in JavaScript applications for dependency management. By traversing all the imports in your app, webpack creates a dependency graph consisting of all the assets needed.

Nov 9, 2020 • 8 Minute Read

Introduction

Webpack is a tool used in JavaScript applications for dependency management. By traversing all the imports in your app, webpack creates a dependency graph consisting of all the assets needed by your app. This dependency graph is then used to generate one or more files called bundles.

WebPack Core Concepts

Entry

The entry point pinpoints the module that webpack should start with when creating its internal dependency graph. By default, webpack uses ./src/index.js.

Output

The output specifies the location that webpack should use to emit bundles and how to name them. By default, webpack uses ./dist/main.js for the main output file and ./dist folder for other generated files.

Loaders

Loaders are webpack's way of allowing developers to bundle files other than JavaScript and JSON that Webpack does not understand out of the box.

Setting Up the App

In order to continue, make sure you have the latest nodeJS and npm installed on your computer.

Create a new folder named deploy-react-webpack and navigate to the folder.

      mkdir deploy-react-webpack
cd deploy-react-webpack
    

Initialize the project with default options.

      npm init -y
    

This creates a package.json file.

Install the required ReactJs packages.

      npm i react react-dom
    

Babel

Babel converts ES5 and ES6 syntax used in ReactJs to a backwards-compatible version of JavaScript that is supported by both older and newer browsers.

Install Babel:

      npm i -D @babel/core babel-loader @babel/preset-env @babel/preset-react
    

Install webpack and webpack-cli:

      npm i -D  webpack webpack-cli webpack-dev-server
    

Configuring Babel

Create a new file at the project root named .babelrc.

      touch .babelrc
    

Add the following code to the file and save.

      {
  "presets": [
      "@babel/preset-env","@babel/preset-react"
   ]
}
    

Configure Webpack

Create a new file at the project root named webpack.config.js.

Add Components for Processing HTML

      npm i html-webpack-plugin html-loader --save-dev
    
      touch webpack.config.js
    

Add the following code.

      const HtmlWebPackPlugin = require("html-webpack-plugin");

module.exports = {
    module: {
        rules: [
            {
                test: /\.(js|jsx)$/,
                exclude: /node_modules/,
                use: {
                    loader: "babel-loader"
                }
            },
            {
                test: /\.html$/,
                use: [
                    {
                        loader: "html-loader"
                    }
                ]
            }
        ]
    },
    plugins: [
        new HtmlWebPackPlugin({
            template: "./src/index.html",
            filename: "./index.html"
        })
    ]
};
    

entry tells webpack where to start when bundling your application. The test rule specifies the file extensions where the babel-loader can be used while excluding files in the node_modules.

Creating the React App

In this stage you will create the actual React app that users can interact with.

Create index.html inside src.

      mkdir src
cd src
touch index.html
    

Add the following code to index.html.

      <html lang="en">
<head>
    <meta charset="utf-8">
     <meta name="viewport" content="width=device-width,initial-scale=1, shrink-to-fit=no">
    <title>How To Deploy React Js With Babel On Heroku</title>
</head>
<body>
<div id="root"></div>
</body>
</html>
    

Inside src, create a file named index.js.

      touch index.js
    

Add the following code.

      import React from 'react'
import ReactDOM from 'react-dom'
class App extends React.Component{
    render(){
        return(
            <div>
                Hello World !
            </div>
        )
    }
}
ReactDOM.render(<App/>, document.getElementById("root"));
    

This creates a simple React hello world component.

Replace the following code in your package.json.

      "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
},
    

with

      "scripts": {
    "dev": "webpack serve",
    "start": "node server.js",
    "build": "webpack --mode production"
  },
    

The dev command is used to run the app in development mode. The start command is used by Heroku to serve files in production.

Your package.json should look like this.

      {
  "name": "deploy-react-webpack",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "dev": "webpack serve",
    "start": "node server.js",
    "build": "webpack --mode production"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "react": "^17.0.1",
    "react-dom": "^17.0.1"
  },
  "devDependencies": {
    "@babel/core": "^7.12.3",
    "@babel/preset-env": "^7.12.1",
    "@babel/preset-react": "^7.12.5",
    "@webpack-cli/serve": "^1.0.1",
    "babel-loader": "^8.1.0",
    "html-loader": "^1.3.2",
    "html-webpack-plugin": "^4.5.0",
    "webpack": "^5.4.0",
    "webpack-cli": "^4.1.0",
    "webpack-dev-server": "^3.11.0"
  }
}
    

Adding Express To Serve Files in Heroku

Install Express using the following command:

      npm install express
    

Create a file in the project root named server.js and add the following code:

      var path = require('path');
var express = require('express');

var app = express();

app.use(express.static(path.join(__dirname, 'dist')));
app.set('port', process.env.PORT || 8080);

var server = app.listen(app.get('port'), function() {
  console.log('listening on port ', server.address().port);
});
    

Preview Project Locally

Run the following command to launch the project locally.

      npm run dev
    

Open the following link in your browser window:

      http://127.0.0.1:8080/
    

You should see a page like this:

Build Project for Production

      npm run build
    

Deploy to Heroku

Create an account on Heroku and confirm your email address.

Install Heroku CLI:

      npm install -g heroku
    

Confirm that the Heroku CLI is installed by running:

      heroku --version
    

You should see your Heroku CLI version.

Log in to Heroku by executing the command below.

      heroku login
    

Running this command will open the Heroku site on your browser, where you can log in.

Set up a Git repository in the project root.

      git init
    

Ignore Node modules in Git.

      touch .gitignore
    

Add the following line to the file:

      node_modules
    
      git add .
    
      git commit -m "initial commit"
    

Create a Heroku app.

      heroku create
    

Publish to Heroku.

      git push heroku master
    

Once the build succeeds, you can go to your Heroku apps dashboard and open your app or open the link in your console.

Once you open the link, your app should look like this:

All done!

Conclusion

Mastery of this skill is vital in roles such as frontend development and devOps leaning towards frontend projects.

You can learn more about webpack at the webpack official documentation website. You can also learn more about deploying apps on Geroku here.