This content originally appeared on DEV Community and was authored by bvpranu97
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 💻.
This content originally appeared on DEV Community and was authored by bvpranu97
bvpranu97 | Sciencx (2022-02-16T06:43:07+00:00) How to use Private Git Repo as an NPM Package?. Retrieved from https://www.scien.cx/2022/02/16/how-to-use-private-git-repo-as-an-npm-package/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.