Skip to main content

The Missing Link: How to Test Shareable Components in Your Project with npm link

09-07-22 SaaSha Pina

How do you test and develop your npm packages in your project locally without republishing to npm? With npm link! Learn to test changes in real-time with this guide on how to link and unlink your component library to your projects.

In larger component-based projects, it’s common to have a published design system to hold reusable components that can be used anywhere across your main application—or other web apps you might control. These component libraries can hold things like buttons, search fields, CTAs, footers, links, frontend logic, you name it. It’s useful to have a published source of reusable components as it can reduce code duplication, standardize your team’s development and increase scalability.

Now let’s say you published a button from your project, fancy-button, to npm and you use it in your project fancy-store-page. You made some cool changes to your fancy button, but you want to test it in your project first to make sure it’s still compatible with the rest of the page. In order to do that, you have to bump your version and publish your package to npm every time you make a change—this can be viciously unproductive. Wouldn’t it be nice if you could just start up your fancy button app locally and see the changes you make instantly reflected on your page?

In comes npm link: the missing ingredient needed to efficiently test your shared packages, seamlessly, on your local before you publish.

What is npm link?

npm link is an npm CLI command that creates a symlink or ‘symbolic link’ between fancy-button and fancy-store-page. This link allows us to develop and test the fancy button component, live, locally, on our page without having to continuously rebuild and publish the dependent package.

How do you use it?

Using npm link is a two-step process:

  1. In the command line in your terminal, navigate to your fancy-button project. Run npm link. This will create a global link allowing your component to be globally accessible by your parent project.
cd projects/fancy-button
npm link
  1. In another terminal, navigate to fancy-store-page. In the root of this folder, run npm link fancy-button. This is where you link your parent project to the dependent component. Note: The link name should be the dependency npm package name taken from the name property in package.json, not the directory name. In this case, they are both the same.
cd projects/fancy-store-page
npm link fancy-button

Now the packages are linked! Changes to your button in /projects/fancy-button will now automatically be reflected in /projects/fancy-store-page/node_modules/fancy-button. Just import the component into your app and use it as you would normally.


Once you’ve developed your changes and tested them to your heart’s desire, you can unlink your projects.

In your parent project terminal, go ahead and run npm unlink fancy-button to unlink the dependency.

* Inside /projects/fancy-store-page *

npm unlink fancy-button

Finally, in your fancy-button directory, run npm unlink so that the package is no longer globally available.

* Inside /projects/fancy-button *
npm unlink

Just like that you’ve officially tested and developed your shared component locally and can publish confidently.

What Are You Waiting For?

The decoupling of components into a library is the foundation of a great design system. With npm link in your node tool belt, you’ll be able to make developing and testing components even more awesome.

Related Content

User-Centered Thinking: 7 Things to Consider and a Free Guide

Want the benefits of UX but not sure where to start? Grab our guide to evaluate your needs, earn buy-in, and get hiring tips.

More Details

Want to talk about how we can work together?

Katie can help

A portrait of Vice President of Business Development, Katie Jennings.

Katie Jennings

Vice President of Business Development