logo
Navigate back to the homepage

Learn the basics of the JavaScript module system and build your own library

Kamlesh Chandnani
December 8th, 2017 · 8 min read

Lately we all have been hearing a lot about “JavaScript Modules”. Everyone is likely wondering what to do with them, and how do they even play a vital role in our daily lives…?

So what the heck is the JS module system? 🤔

As JavaScript development gets more and more widespread, namespaces and dependencies get much more difficult to handle. Different solutions have been developed to deal with this problem in the form of module systems.

Module VS Non Modular JS

Why is understanding the JS Module System important?

Let me tell you a story.

Telling stories is as basic to human beings as eating. More so, in fact, for while food makes us live, stories are what make our lives worth living - Richard Kearney

Why am I even talking about all this stuff?

So, my day job is to design and architect projects, and I quickly realized that there were many common functionalities required across projects. I always ended up copy-pasting those functionalities to new projects over and over again.

The problem was that whenever one piece of the code changed, I needed to manually sync those changes across all my projects. To avoid all these tedious manual tasks, I decided to extract the common functionalities and compose an npm package out of them. This way, others on the team would be able to re-use them as dependencies and simply update them whenever a new release was rolled out.

This approach had some advantages:

  • If there was some change in the core library, then a change only had to be made in one place without refactoring all the applications’ code for the same thing.
  • All the applications remained in sync. Whenever a change was made, all the applications just needed to run the “npm update” command.

Source code of library Source code of library

So, next step was to publish the library. Right? 😖

This was the toughest part, because there were a bunch of things bouncing around in my head, like:

  1. How do I make the tree shakeable?
  2. What JS module systems should I target (commonjs, amd, harmony).
  3. Should I transpile the source?
  4. Should I bundle the source?
  5. What files should I publish?

Everyone of us has had these kind of questions bubbling in our heads while creating a library. Right?

I’ll try to address all the above questions now.

Different Types of JS Module Systems 📚

1. CommonJS

  • Implemented by node
  • Used for the server side when you have modules installed
  • No runtime/async module loading
  • import via “require
  • export via “module.exports
  • When you import you get back an object
  • No tree shaking, because when you import you get an object
  • No static analyzing, as you get an object, so property lookup is at runtime
  • You always get a copy of an object, so no live changes in the module itself
  • Poor cyclic dependency management
  • Simple Syntax

CommonJS Example

1// File log.js
2function log(){
3 console.log('Example of CJS module system');
4}
5// expose log to other modules
6module.exports = { log }
7
8// File index.js
9var logModule = require('./log');
10logModule.log();

2. AMD: Async Module Definition

  • Implemented by RequireJs
  • Used for the client side (browser) when you want dynamic loading of modules
  • Import via “require”
  • Complex Syntax

AMD Example

1// File log.js
2define(['logModule'], function(){
3 // export (expose) foo for other modules
4 return {
5 log: function(){
6 console.log('Example of AMD module system');
7 }
8 };
9 });
10
11// File index.js
12require(['log'], function (logModule) {
13 logModule.log();
14});

3. UMD: Universal Module Definition

  • Combination of CommonJs + AMD (that is, Syntax of CommonJs + async loading of AMD)
  • Can be used for both AMD/CommonJs environments
  • UMD essentially creates a way to use either of the two, while also supporting the global variable definition. As a result, UMD modules are capable of working on both client and server.

UMD Example

1// File log.js
2(function (global, factory) {
3 if (typeof define === "function" && define.amd) {
4 define(["exports"], factory);
5 } else if (typeof exports !== "undefined") {
6 factory(exports);
7 } else {
8 var mod = {
9 exports: {}
10 };
11 factory(mod.exports);
12 global.log = mod.exports;
13 }
14})(this, function (exports) {
15 "use strict";
16
17 function log() {
18 console.log("Example of UMD module system");
19 }
20 // expose log to other modules
21 exports.log = log;
22});

4. ECMAScript Harmony (ES6)

  • Used for both server/client side
  • Runtime/static loading of modules supported
  • When you import, you get back bindings value (actual value)
  • Import via “import” and export via “export”
  • Static analyzing — You can determine imports and exports at compile time (statically) — you only have to look at the source code, you don’t have to execute it
  • Tree shakeable, because of static analyzing supported by ES6
  • Always get an actual value so live changes in the module itself
  • Better cyclic dependency management than CommonJS

Harmony/ES Example

1// File log.js
2const log = () => {
3 console.log('Example of ES module system');
4}
5export default log
6
7// File index.js
8import log from "./log"
9log();

So now you know all about different types of JS module systems and how they have evolved.

Although the ES Harmony module system is supported by all the tools and modern browsers, we never know when publishing libraries how our consumers might utilize them. So we must always ensure that our libraries work in all environments.

Let’s dive in deeper and design a sample library to answer all the questions related to publishing a library in the proper way.

I’ve built a small UI library (you can find the source code on GitHub), and I’ll share all my experiences and explorations for transpiling, bundling, and publishing it.

Directory Structure

Here we have a small UI library which has 3 components: Button, Card, and NavBar. Let’s transpile and publish it step by step.

Best practices before publishing 📝

  1. Tree Shaking 🌳
  • Tree shaking is a term commonly used in the context of JavaScript for dead-code elimination. It relies on the static structure of ES2015 module syntax, that is, import and export. The name and concept have been popularized by the ES2015 module bundler rollup.
  • Webpack and Rollup both support Tree Shaking, meaning we need to keep certain things in mind so that our code is tree shakeable.

Tree Shaking Example

1// File shakebake.js
2const shake = () => console.log('shake');
3const bake = () => console.log('bake');
4
5//can be tree shaken as we export as es modules
6export { shake, bake };
7
8// File index.js
9import { shake } from './shakebake.js'
10// only shake is included in the output
11
12// File shakebake.js
13const shake = () => console.log('shake');
14const bake = () => console.log('bake');
15
16//cannot be tree shaken as we have exported an object
17export default { shake, bake };
18
19// File index.js
20import { shake } from './shakebake.js'
21// both shake and bake are included in the output
  1. Publish all module variants
  • We should publish all the module variants, like UMD and ES, because we never know which browser/webpack versions our consumers might use this library/package in.
  • Even though all the bundlers like Webpack and Rollup understand ES modules, if our consumer is using Webpack 1.x, then it cannot understand the ES module.

package.json

1{
2 "name": "js-module-system",
3 "version": "0.0.1",
4 ...
5 "main": "dist/index.js",
6 "module": "dist/index.es.js",
7 ...
8}
  • The main field of the package.json file is usually used to point to the UMD version of the library/package.
  • You might be wondering — how can I release the **ES** version of my library/package? 🤔
    The module field of the package.json is used to point to the ES version of the library/package. Previously, many fields were used like js:next and js:main , but module is now standardized and is used by bundlers as a lookup for the ES version of the library/package.

Less well-known fact: Webpack uses resolve.mainfields to determine which fields in package.json are checked.

Performance Tip: Always try to publish the ES version of your library/package as well, because all the modern browsers now support ES modules. So you can transpile less, and ultimately you’ll end up shipping less code to your users. This will boost your application’s performance.

So now what’s next? Transpilation or Bundling? What tools should we use?

Ah, here comes the trickiest part! Let’s dive in. 🏊

Webpack vs Rollup vs Babel?

These are all the tools we use in our day to day lives to ship our applications/libraries/packages. I cannot imagine modern web development without them . Therefore, we cannot compare them, so that would be the wrong question to ask! ❌

Each tool has it’s own benefits and serves different purpose based on your needs.

Let’s look at each of these tools now:

Webpack

Webpack is a great module bundler 📦 that is widely accepted and mostly used for building SPAs. It gives you all the features out of the box like code splitting, async loading of bundles, tree shaking, and so on. It uses the CommonJS module system.

RollupJS

Rollup is also a module bundler similar to Webpack. However, the main advantage of rollup is that it follows new standardized formatting for code modules included in the ES6 revision, so you can use it to bundle the ES module variant of your library/package. It doesn’t support async loading of bundles.

Babel

Babel is a transpiler for JavaScript best known for its ability to turn ES6 code into code that runs in your browser (or on your server) today. Remember that it just transpiles and doesn’t bundle your code.

My advice: use Rollup for libraries and Webpack for apps.

Transpile (Babel-ify) the source or Bundle it

Again there’s a story behind this one. 😄

I spent most of my time trying to figure out the answer to this question when I was building this library. I started digging out my node_modules to lookup all the great libraries and check out their build systems.

Libraries vs Packages build output comparision Libraries vs Packages build output comparision

After looking at the build output for different libraries/packages, I got a clear picture of what different strategies the authors of these libraries might have had in mind before publishing. Below are my observations.

As you can see in the above image, I’ve divided these libraries/packages into two groups based on their characteristics:

  1. UI Libraries (styled-components, material-ui)
  2. Core Packages (react, react-dom)

If you’re a good observer 😎 you might have figured out the difference between these two groups.

UI Libraries have a dist folder that has the bundled and minified version for ES and UMD/CJS module systems as a target. There is a lib folder that has the transpiled version of the library.

Core Packages have just one folder which has the bundled and minified version for CJS or UMD module system as a target.

But why is there a difference in build output of UI libraries and Core Packages? 🤔

UI Libraries

Imagine if we just publish the bundled version of our library and host it on CDN. Our consumer will use it directly in a<script/> tag. Now if my consumer wants to use just the <Button/> component, they have to load the entire library. Also, in a browser, there is no bundler which will take care of tree shaking, and we’ll end up shipping the whole library code to our consumer. We don’t want this.

1<script type="module">
2 import {Button} from "https://unpkg.com/uilibrary/index.js";
3</script>

Now if we simply transpile the src into lib and host the lib on a CDN, our consumers can actually get whatever they want without any overhead. “Ship less, load faster”. ✅

1<script type="module">
2 import {Button} from "https://unpkg.com/uilibrary/lib/button.js";
3</script>

Core Packages

Core packages are never utilized via the <script/> tag, as they need to be part of main application. So we can safely release the bundled version (UMD, ES) for these kinds of packages and leave the build system up to the consumers.

For example, they can use the UMD variant but no tree shaking, or they can use the ES variant if the bundler is capable of identifying and getting the benefits of tree shaking.

1// CJS require
2const Button = require("uilibrary/button");
1// ES import
2import {Button} from "uilibrary";

But…what about our question: should we transpile (Babelify) the source or bundle it? 🤔

For the UI Library, we need to transpile the source with Babel with the es module system as a target, and place it in lib. We can even host the lib on a CDN.

We should bundle and minify the source using rollup for cjs/umd module system and es module system as a target. Modify the package.json to point to the proper target systems.

package.json

1{
2 "name": "js-module-system",
3 "version": "0.0.1",
4 ...
5 "main": "dist/index.js", // for umd/cjs builds
6 "module": "dist/index.es.js", // for es build
7 ...
8}

For core packages, we don’t need the lib version.

We just need to bundle and minify the source using rollup for cjs/umd module system and es module system as a target. Modify the package.json to point to the proper target systems, same as above.

Tip: We can host the dist folder on the CDN as well, for the consumers who are willing to download the whole library/package via <script/> tag.

How should we build this?

We should have different scripts for each target system in package.json . You can find the rollup config in the GitHub repo.

package.json

1{
2 "scripts": {
3 "clean": "rimraf dist",
4 "build": "run-s clean && run-p build:es build:cjs build:lib:es",
5 "build:es": "NODE_ENV=es rollup -c",
6 "build:cjs": "NODE_ENV=cjs rollup -c",
7 "build:lib:es": "BABEL_ENV=es babel src -d lib"
8 }
9}

What should we publish?

  • License
  • README
  • Changelog
  • Metadata(main , module, bin)  — package.json
  • Control through package.json files property

In package.json , the "files" field is an array of file patterns that describes the entries to be included when your package is installed as a dependency. If you name a folder in the array, then it will also include the files inside that folder.

We will include the lib and dist folders in "files" field in our case.

package.json

1{
2 "files": ["dist", "lib"]
3}

Finally the library is ready to publish. Just type the npm run build command in the terminal, and you can see the following output. Closely look at the dist and lib folders. 🎉

Ready to publish 😎 Ready to publish 😎

Wrap up

Wow! Where does the time go? That was a wild ride, but I sincerely hope it gave you a better understanding of the JavaScript Module system and how you can create your own library and publish it.

Just make sure you take care of the following things:

  1. Make it Tree Shakeable. 🌳
  2. Target at least ES Harmony and CJS module systems. 👍
  3. Use Babel and Bundlers for libraries. 💄
  4. Use Bundlers for Core packages. 📦
  5. Set the module field of package.json to point to the ES version of your module (PS: It helps in tree shaking). 👻
  6. Publish the folders which have transpiled as well as bundled versions of you module. 🏭

Join the Newsletter

Subscribe to get the latest write-ups about my learnings from JavaScript, React, Design Systems and Life

No spam, pinky promise!

More articles from Kamlesh Chandnani

How to use version control to keep your web apps up to date

Version Control helps you keep track of which users are using what version of your app.

July 8th, 2017 · 2 min read

The Number Game

Progress, but don't rush

June 17th, 2021 · 2 min read
Link to https://github.com/kamleshchandnaniLink to https://twitter.com/@_kamlesh_Link to https://www.youtube.com/playlist?list=PLpATFO7gaFGgwZRziAoScNoAUyyR_irFMLink to https://linkedin.com/in/kamleshchandnani