Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
February 16, 2022 06:43 am GMT

How to use Private Git Repo as an NPM Package?

History in short: I was about to build a project in MERN stack. The architecture I chose was micro-service. I had to put some shared code in shared package. I looked onto npmjs.com which asks for money to publish private packages.

I taught of using private git repository as npm package. Here is the guide to use a private package as npm package.

Create a private git repository. And push your code. Optional : Add.npmignore. My shared code was built using typescript and I didnt want those ts files in the package.

Go to your repository and copy the repo link as http. (ssh didn't worked for me.). Then come back to your project and run
npm install repo_link
Example: npm install https://github.com/expressjs/express.git
If you want separate branch as package then install the package like: npm install https://github.com/expressjs/express.git#4.x

You can also use specific commit too:
npm install https://github.com/expressjs/express.git#commit_id

Whenever you push some code to that specific branch then just upgrade the package using npm upgrade repo_link

So I found this free real estate. Enjoy Devoloping .


Original Link: https://dev.to/bvpranu97/how-to-use-private-git-repo-as-an-npm-package-3nn7

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To