码迷,mamicode.com
首页 > Web开发 > 详细

解决从github下载web的源码部署到eclipse的问题

时间:2015-06-02 13:29:47      阅读:518      评论:0      收藏:0      [点我收藏+]

标签:github   部署   web   

2015年6月2日 天气晴
github官网:https://github.com/
以下以pdf.js作为案例说明:https://github.com/mozilla/pdf.js
1).点击案例网站右侧的Download ZIP将源码下载下来,并解压

注意:当然也可以通过HTTPS clone URL 及Clone in Desktop的方式把源码下载下来,在此不做说明

2).在解压文件的web目录下找到viewer.html文件,把该文件重新命名后缀为.jsp的文件。

注意:当然也可以通过查看在线demo的的源码,并把demo源码拷贝到对应的jsp文件即可

3). 按部就班的把js、css文件整合到web项目中

注意:方便起见,最好分别建一个js、css分别用来放js及css文件

4).运行eclipse中的项目,反复结合谷歌chrome的控制台console查看报错问题,并进行解决,直到全部错误消失为止

另外,上传者也提供了一种比较好的方式来获得代码,下面简单说一下

1).To get a local copy of the current code, clone it using git:

$ git clone git://github.com/mozilla/pdf.js.git
$ cd pdf.js

注意:Git for Windows下载地址:http://msysgit.github.io/,直接安装即可

2).Next, install Node.js via the official package or via nvm. If everything worked out, run

$ npm install

to install all dependencies for PDF.js.

注意:nodejs下载官网为:http://nodejs.org/,打不开的情况下可以翻墙或者时用其他网站替代。对安装有问题,可以参考一下W3CSCHOOL.CC这个网址;对nodejs不了解,可以查看一下百度百科

3).Finally you need to start a local web server as some browsers do not allow opening PDF files using a file:// URL. Run

$ node make server

4).and then you can open

http://localhost:8888/web/viewer.html
It is also possible to view all test PDF files on the right side by opening

http://localhost:8888/test/pdfs/?frame
注意:找不到pdf.js这个文件夹的时候,可以通过EveryThing这个软件进行搜索。EveryThing下载地址为:http://www.voidtools.com/

解决从github下载web的源码部署到eclipse的问题

标签:github   部署   web   

原文地址:http://blog.csdn.net/u012814005/article/details/46326653

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!