Drenai
Drenai

Reputation: 12357

How to use locally updated npm package without publishing it to npm?

I'm using an npm package in my-project and I have some updates I want to apply to that package:

Is there an established process for doing this locally - using the updated source in my-project as an npm module?

Upvotes: 0

Views: 603

Answers (1)

Roshan
Roshan

Reputation: 3592

Use npm link You can use your local copy just like other packages. npm link

Upvotes: 1

Related Questions