Recently different tools and workflows have emerged in order to make the front-end development process easier — one of these tools is known as abuild tool
. In this tutorial, we will explore what build tools are and how to use them. We’ll look at NPM scripts, grunt, gulp and also webpack. We will also talk about how to choose which build tool to use based on your project needs.
Most build tools are built on top of NODE and NPM
. In this tutorial, basic knowledge of NPM is assumed but not required as we will also do an introduction to NPM. This tutorial does require a basic knowledge of HTML, CSS, and JavaScript.
NPM (Node package manager) is a JavaScript package manager that comes pre-installed with Node.js even though no Node.js skills are needed to use it. NPM’S primary function is to run a simple task like browser-synching, loading in libraries and style sheets dynamically from your package.json
file. NPM installs a node_modules
folder which then lets you run even more commands from the various installed packages. Any native CLI task can be done within the script using the right objects. Let’s see some examples.
By default NPM
comes pre-installed with NODE
. So no need to install it differently. To use npm scripts
all you have to do is initialize it. Create a new folder called npm_test
then initialize NPM to create a package.json
file. In your terminal type npm init
then follow the prompt. Once that is done you should now see a package.json
file inside your projects folder. The file should look like this:
{ "name": "npm_tests", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC" }
As you can see, index.js
is defined as the main script otherwise known as the entry point to our application. We need to create that file and also tell NPM how to start our app. First, create a blank file called index.js
then update the scripts
object in your package.json
file so it looks like this:
"scripts": { "start": "node index.js" },
This tells node that whenever we type the command npm start
in the terminal, it should start up the index.js
file. Inside your index.js
file let’s put a simple log message. Add the following code:
console.log('This is index.js')
Now in your terminal type npm start
and you should see the following output:
$ npm start > [email protected] start /home/user/frontend/npm_tests > This is index.js
Now although this example isn’t very robust. Later on, when we talk about other build tools and we will see how we can use npm scripts
to perform other useful commands like installing dependencies, testing, etc.
Yarn (Yarn Package Manager) is another JavaScript package manager created by Facebook. Over time it has been regarded as a faster and more reliable alternative to NPM because they have similar syntax and functionality. Yarn also installs packages from the NPM Registry
so any NPM Package
can also be installed with Yarn. Yarn has a different philosophy for managing packages. Let’s take a look at some of them.
Yarn and NPM perform basically the same functions. Though they are similar in functions, they both have a different syntax. To find out how to install and use yarn follow the instructions on this page.
NPM or Yarn? Many have argued (and tests have proven) that Yarn
is faster than npm
, however, a great majority still use npm
and most of the build tools we will talk about support npm
by default. However, choosing a tool to use is mainly a function of the developers and project needs. Always be sure to pick a tool that best fits your projects needs.
Grunt is a JavaScript task runner built on top of Node.Js and NPM. Its primary function is to optimize and help you reduce all repetitive tasks in your project like loading in JavaScript resources, style sheets, linting and debugging. Since GRUNT
is built on top of NPM
it is initialized with a package.json
file but the tasks are defined in a Grunt.js
file.
N/B: **'G'**
in **Grunt.js**
must be capitalized. Let’s see how to use it to enhance our development:
To use grunt we first need to install it. In your terminal type npm install -g grunt
. This will install grunt globally on your machine. Next, create a folder called grunt_test
and initialize a package.json
file. In your terminal type npm init
and follow the prompt to create the file. Now your package.json
file should look like this:
{ "name": "grunt_test", "version": "1.0.0", "description": "", "main": "app.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC" }
Next, we need to install Grunt as a dependency. In your terminal type npm install --save grunt
. That command will install grunt as a dependency and your package.json
file will now look like this:
{ "name": "grunt_test", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC", "dependencies": { "grunt": "^1.0.3" } }
Now that grunt
is installed, let’s use it. Create an empty gruntfile.js
file. For us to use this file we need to set a goal, let’s assume we have several files with codes in it and we want to compile them into one. For that, we need to use a plugin (plugins are pieces of code that add extra functionality to a tool). To achieve our goal, we will use a plugin called grunt-contrib-concat
. To install the plugin type this in your terminal:
npm install grunt-contrib-concat --save-dev
Now let’s put it in action. Create a folder called js
, then create two files main1.js
and main2.js
and add this code:
/** this is main1.js **/
Do the same for main2.js
. Now in your gruntfile.js
file add the following lines of code to it:
module.exports = function(grunt){ grunt.initConfig({ concat: { dist: { src: ['js/main1.js', 'js/main2.js'], dest: 'dist/js/built.js', }, }, }); grunt.loadNpmTasks('grunt-contrib-concat'); };
This task is instructing grunt to copy the files from main1.js
and main2.js
to a folder/file called dist/built.js
. Though this file is not already created grunt
will automatically create it for us. In your terminal type grunt concat
:
$ grunt concat Running "concat:dist" (concat) task Done
Now you will see a new folder has been created dist/built.js
:
/** this is main one */ /** this is main two */
This shows it added the contents of the two files together. This is powerful when you have a lot of JavaScript styles it will help optimize your website by compiling all of the code into just one file. There are a lot of other functions and uses of grunt, you can find them here.
Gulp.js is yet another JavaScript task runner built on top of Node.js and NPM. Its primary function is to help you reduce all repetitive tasks in your project. Gulp is a front-end build system, so it doesn’t matter what front-end technology is used (Vue, React or Angular) it still works and performs optimally. It is also managed with a package.json
file and has built-in support for various plugins that help in performing various tasks.
Gulp is built on top of node strings
and processes data in the form of pipelines
. Create a folder called gulp_test
and initialize a package.json file. In your terminal type npm init
and follow the prompt to initialize the file. Your package.json will now look like this:
{ "name": "gulp_test", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC" }
To use gulp
, we must install it as a project dependency. In your terminal type npm install --save-dev gulp
. This will save it as a project dependency and your package.json
file will now look like this:
{ "name": "gulp_test", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC", "devDependencies": { "gulp": "^4.0.0" } }
To create tasks we have to create a file called gulpfile.js
and add code to it. Gulp has four top-level functions:
Let’s create dummy HTML. First, create a src
folder and add the two files to it. index.html
and test.html
then add the following code to it:
<html> <head> <title>Gulp Test</title> </head> <body> <h2>This is for a test</h2> </body> </html>
Let’s set some tasks. In your gulp.js file add the following lines of code:
const gulp = require('gulp'); gulp.task('compileHtml', function(done){ gulp.src('src/*.html') .pipe(gulp.dest('build')); done(); });
This command tells gulp to copy all the files from the src
directory to a build directory. We created a function compileHtml
, and that is what we will refer to when we want to run our tasks. In your terminal type gulp compileHTml
. Now see a build
folder has been created with the files in it. Next, let’s use a gulp
plugin to minify our Javascript. First, we need to install the plugin. For a list of gulp
plugins check here.
First, let’s create a folder called js
and create a test file in it test.js
. Next, we need to install a plugin called uglify
to help us minify our files. In the terminal type npm install --save-dev gulp-uglify
. This will install it as a dependency in our project. Now in your gulpfile.js
update the code to this:
const gulp = require('gulp'); const uglify = require('gulp-uglify'); gulp.task('compileHtml', function(done){ gulp.src('src/*.html') .pipe(gulp.dest('build')); done(); }); gulp.task('minify', function(done){ gulp.src('src/js/*.html') .pipe(uglify()) .pipe(gulp.dest('build/js')); done(); });
Webpack is a front-end build tool. More accurately, it is defined as a Module Bundler
. Webpack’s functionality goes beyond just converting different modules into static assets. Webpack makes it easy to bundle code, transpile all older JS code into ES6, load development dependencies, run automated tasks and manage your project. With Webpack you can load custom files or files installed by NPM
. The basic functionality of Webpack can be extended into more complex ones by using plugins and loaders
css
sass
jsx
CoffeeScript
are examples of common Webpack loaders.
To use Webpack, we must first install it. We can install it through the terminal by typing npm install -g Webpack
. This command will install Webpack globally on your machine. Next, let’s create a folder to work with. Create a folder webpacktest
and initialize a package.json
file. In your terminal type npm init
and follow the prompts to create the file. Now the package.json file should look like this:
{ "name": "webpacktest", "version": "1.0.0", "description": "", "main": "app.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC" }
Now that we have it setup let’s do something with it. Let’s say we want to use JQuery
library in our new project, here’s how we can do it. First, we need to install JQuery
. In your terminal type npm install --save jquery
. If that is successful your package.json
file will now look like this:
{ "name": "webpacktest", "version": "1.0.0", "description": "", "main": "app.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC", "dependencies": { "jquery": "^3.3.1" } }
You can see JQuery
has been installed as a dependency. Now for us to use it we need to create files. First, let’s create an HTML file we will load in our browser. Create an index.html
file and add the following lines of code to it:
<html> <head> <title>WebPack Test</title> </head> <body> <script src="bundle.js"></script> </body> </html>
You can see we called a file namedbundle.js
even though it has not been created yet. When we run our Webpack
command, Webpack will automatically compile all of the code we tell it to into that file. Now create an app.js
file and add the following lines of code:
let $ = require('jquery'); $('body').append("<h1>Hey there! This is JQUERY</h1>");
Here we are requiring JQuery
in our project then we are using the append
JQuery function to add data to our page. To see this, type webpack --mode=development app.js -o bundle.js
. Once done, open your index.html file in the browser and you will see the following:
This means that Webpack successfully bundled the code and imported the JQuery
library for us to use. You can already see how beneficial this is as if we had to import ten dependencies Webpack makes it possible for us to add all to just one file instead of individual files. Let’s use useful data. Create a books.js
file and add the following lines of code to it:
let books = [ { name: "Hey there my name is awesome"}, { name: "The mythical man month"}, { name: "Please don't make me think"} ] module.exports = books;
Next, update your app.js
to look like this:
let $ = require('jquery'); let books = require('./books.js'); $.each(books, function(key, value){ $('body').append("<h1>"+ books[key].name +"</h1>"); })
Here we import the books from the books.js
file and dynamically add it to our HTML page using special JQuery functions. Now if you run the command webpack --mode=development app.js -o bundle.js
you will see this on your page:
In your terminal type webpack --mode=development app.js -o bundle.js --watch
. Now any change you make Webpack automatically watches and updates the bundle.js file. Finally, let’s see how we can add styles to our page. For us to use CSS or SASS in Webpack we must use a loader. Let’s install it. In your terminal type npm install --save-dev css-loader style-loader
. Your package.json file will now look like this:
{ "name": "webpacktest", "version": "1.0.0", "description": "", "main": "app.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC", "dependencies": { "jquery": "^3.3.1" }, "devDependencies": { "css-loader": "^2.0.1", "style-loader": "^0.23.1" } }
You can see both loaders have been installed as dev dependencies for us to use them. Let’s create a style sheet and add basic styles to it. Create a styles.css
file and add the following lines of code to it:
body { background: yellow; }
Now update your app.js
file to look like this:
require('!style-loader!css-loader!./styles.css'); let $ = require('jquery'); let books = require('./books.js'); $.each(books, function(key, value){ $('body').append("<h1>"+ books[key].name +"</h1>"); })
Now since Webpack is in watch-mode, refresh your browser and you will see this:
Now we’ve seen how to use Webpack and how it can help development. There are still a lot of Webpack commands, techniques, and plugins to explore, you can find them here.
In this tutorial, we talked about different build tools and how they can help improve our development. All of these tools are great and are fit for certain use cases. However, try not to spend so much time thinking about which tool to use. Just define your projects needs then try to use a tool that best fits that need and is not too difficult to set up and get up to speed with. Thanks. Happy coding!
Deploying a Node-based web app or website is the easy part. Making sure your Node instance continues to serve resources to your app is where things get tougher. If you’re interested in ensuring requests to the backend or third-party services are successful, try LogRocket.
LogRocket is like a DVR for web and mobile apps, recording literally everything that happens while a user interacts with your app. Instead of guessing why problems happen, you can aggregate and report on problematic network requests to quickly understand the root cause.
LogRocket instruments your app to record baseline performance timings such as page load time, time to first byte, slow network requests, and also logs Redux, NgRx, and Vuex actions/state. Start monitoring for free.
Would you be interested in joining LogRocket's developer community?
Join LogRocket’s Content Advisory Board. You’ll help inform the type of content we create and get access to exclusive meetups, social accreditation, and swag.
Sign up nowBuild a fast, real-time app with Relay 17 to leverage features like optimistic UI updates, GraphQL subscriptions, and seamless data syncing.
Simplify component interaction and dynamic theming in Vue 3 with defineExpose and for better control and flexibility.
Explore how to integrate TypeScript into a Node.js and Express application, leveraging ts-node, nodemon, and TypeScript path aliases.
es-toolkit is a lightweight, efficient JavaScript utility library, ideal as a modern Lodash alternative for smaller bundles.