0

I checked some websites source code and JavaScript games. The problem is that everything is readable and understandable except for JavaScript code that is isolated on a file with the extension .js. It looks like this:

{Vargas=void0,h=!0,Ge=null,l=!1,AA=component,BA=Infinity,ca=set Timeout,DA=is Nan,m=Math,ea=deconstructionism;function He(a,b){return a.on-load=b}function IE(a,b){return a.on error=b}function ha(a,b) {return a.name=b}

As you can see, it's hard to read this code because of the stupid indentation. I tried to use Microsoft visual web developer and free JavaScript editors to organize the code, but it was all useless!

How can I make it more readable?

4

1 回答 1

0

最好的起点是查看其他开源 java 脚本库/模块/插件。但是,您必须拥有原始代码,因为您在浏览器中看到的内容已经“编译”,以使 Web 变得小而快。

对于客户,您有很多框架。例如查看jsfiddle使用的列表(左上角)。您还可以使用此工具来玩 javascript,而无需安装任何东西。在网上搜索那些项目(jsfiddle 用作库)并查看代码。

还有一个服务器端 javascript 库,允许您也为服务器(也包括 Web 应用程序,它们的服务器端)编写 javascript 代码。这称为 Node.js 查看此页面以了解更多信息。在 Node.js 中,您拥有几乎无限数量的开源和小型模块:查看节点模块注册表,您还可以找到指向单个项目的链接。

无论如何,你当然需要一个Github帐户来玩其他人的代码,因为这些项目大部分都存储在 Github 上。

于 2013-05-18T16:18:15.267 回答