How to install local npm package in a project

Article autor
September 9, 2025
How to install local npm package in a project
Elixir Newsletter
Join Elixir newsletter

Subscribe to receive Elixir news to your inbox every two weeks.

Oops! Something went wrong while submitting the form.
Elixir Newsletter
Expand your skills

Download free e-books, watch expert tech talks, and explore open-source projects. Everything you need to grow as a developer - completely free.

Table of contents

In some cases, like for testing purposes, you might want to use an npm package stored on a local machine. Here is how you can do that with one simple command.

In typical case scenario you pass a published package name when installing it via npm:

npm install jquery

Let's say you have awesome-editor library written by yourself stored on your local machine under ~/projects/awesome-editor.

Installing it in your project is as simple as:

npm install ~/projects/awesome-editor

Once the installation is finished you will see a new entry in package.json:

"awesome-editor": "file:<relative path goes here>",

That's it, you can now use it in your project!

Related posts

Dive deeper into this topic with these related posts

No items found.

You might also like

Discover more content from this category

Style spacing between repeated elements in CSS using flex gap

It's a pretty common scenario - you have to place a few elements in equal distances. E.g. unordered list items.

How to Lazy-Load external scripts for better page speed?

Nowadays, with an ever-growing number of web services, we tend to overload Web apps with external resources. As a result, it decreases page load speed and affects SEO score. There is a pretty easy solution for that.

How to convert string to camel and snake case in Elixir

Sooner or later you may need to convert a string in Elixir to a camel or snake case. With Macro module (available in Elixir without extra dependency) it's super easy.