Skip to content

killinux/github-linker

 
 

Repository files navigation

GitHub Linker

Supported npm package Supported bower package

The GitHub Linker is a Google Chrome Extension which links npm and bower dependencies listed in package.json and bower.json on GitHub to their project’s pages. It also links require() statements with the related package or file.

Features

package.json & bower.json

Link dependencies devDependencies peerDependencies and optionalDependencies to the related GitHub repository.

require()

Link require() staments to the related GitHub repository, nodejs API page or repository file.

var fs = require('fs');	// => http://nodejs.org/api/fs.html
var lodash = require('lodash'); // => https://github.com/lodash/lodash
var action = require('./lib/action'); // => https://github.com/user/repo/blob/master/lib/action.js

Works also with CoffeeScript:

fs = require("fs") # => http://nodejs.org/api/fs.html
lodash = require("lodash") # => https://github.com/lodash/lodash
action = require("./lib/action") # => https://github.com/user/repo/blob/master/lib/action.coffee

Preview

https://chrome.google.com/webstore/detail/github-linker/jlmafbaeoofdegohdhinkhilhclaklkp

Installation

Go to Chrome Web Store and click on the add button.

Total supported repositories

npm: 75151

bower: 17558

Support

Should you have any problems, feel free to open up an issue.

License

Copyright (c) 2014 Stefan Buck. Licensed under the MIT license.