Skip to content

Commit 7bbeebe

Browse files
Fix broken repository URL in package.json
GitHub hasn't supported the git protocol [since 2022](https://github.blog/security/application-security/improving-git-protocol-security-github/#no-more-unauthenticated-git), so this URL is broken. (This is a common error affecting many popular npm packages; I'm opening PRs on several projects to fix it. I encourage anyone reading this to check any packages they maintain and implement the same fix if appropriate!)
1 parent 1f29dd7 commit 7bbeebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"repository": {
2323
"type": "git",
24-
"url": "git://github.com/nodejs/string_decoder.git"
24+
"url": "https://github.com/nodejs/string_decoder.git"
2525
},
2626
"homepage": "https://github.com/nodejs/string_decoder",
2727
"keywords": [

0 commit comments

Comments
 (0)