The GitHub Linker is a Google Chrome Extension which links npm and bower dependencies listed in
package.json
andbower.json
on GitHub to their project’s pages. It also links require() statements with the related package or file.
Link dependencies
devDependencies
peerDependencies
and optionalDependencies
to the related GitHub repository.
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
Go to Chrome Web Store and click on the add button.
npm: 75151
bower: 17558
Should you have any problems, feel free to open up an issue.
Copyright (c) 2014 Stefan Buck. Licensed under the MIT license.