Repo.js可以抓取github上的Repository,最重要的是版面樣式跟github一樣,省去許多麻煩
使用方法很簡單
HTML:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript" src="repo.min.js"></script> <!-- HTML部份只需要一個div即可 --> <div id="github"> </div>
jQuery:
$(document).ready(function(){ //輸入user和Repository名稱 $('#github').repo({ user: 'johnson4932', name: 'node' }); });