Skip to content

Instantly share code, notes, and snippets.

@sujeetkv
Last active March 19, 2025 12:14
Show Gist options
  • Save sujeetkv/383506c42f7580abdbeed47809b8814f to your computer and use it in GitHub Desktop.
Save sujeetkv/383506c42f7580abdbeed47809b8814f to your computer and use it in GitHub Desktop.
Use private repo as npm dependency.

Use private repo as npm dependency

Create Deploy-Token (Access-Token) for particular private repo and use it in dependency as following:

{
    "dependencies": {
        "package-name": "git+https://<username>:<access_token>@github.com/username/repository#{branch|tag}"
    }
}

For Example:

{
    "dependencies": {
        "demo-lib": "git+https://<username>:<access_token>@gitlab.com/username/demo-lib#1.2.4",
        "demo-util": "git+https://<username>:<access_token>@gitlab.com/username/demo-util#prod",
        "demo-dep": "git+https://<access_token>:[email protected]/username/demo-dep#master"
    }
}

Or you can add SSH key of of git client and use following:

{
    "dependencies": {
        "package-name": "git+ssh://[email protected]:username/repository.git#{branch|tag}"
    }
}
Copy link

ghost commented Nov 26, 2024

Hey, I am facing this type of issue #9 [5/6] RUN git ls-remote ***github.com/tech21ha/datalayer-node-pkg#prod
#9 1.550 fatal: repository 'https://github.com/tech21ha/datalayer-node-pkg#prod/' not found
#9 ERROR: process "/bin/sh -c git ls-remote ***github.com/tech21ha/datalayer-node-pkg#prod" did not complete successfully: exit code: 128

[5/6] RUN git ls-remote ***github.com/tech21ha/datalayer-node-pkg#prod:
1.550 fatal: repository 'https://github.com/tech21ha/datalayer-node-pkg#prod/' not found

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment