在 python 中部署时合并 javascript 文件
我正在尝试减少我们网站中包含的脚本数量,并且我们使用构建来处理部署。 有人成功地实现了通过构建来组合和压缩脚本的方法吗?
I'm trying to reduce the number of scripts included in our website and we use buildout to handle deployments. Has anybody successfully implemented a method of combining and compressing scripts with buildout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这是我制作的一个 Python 脚本,我将其用于所有繁重的 JavaScript 项目。 我正在使用 YUICompressor,但您可以更改代码以使用其他压缩器。
我这样使用它(下面只是一个代码片段,并假设
compress
函数存在于当前命名空间中):Here's a Python script I made that I use with all my heavy JavaScript projects. I'm using YUICompressor, but you can change the code to use another compressor.
I use it like this (the below is just a code snippet, and assumes that the
compress
function exists in the current namespace):将 Blixt 的解决方案与 JS Min 相结合。 代码如下:
只需调用
compress(in_files, out_file)
方法Combining Blixt's solution with JS Min. Here is the code:
Just call the
compress(in_files, out_file)
methodqooxdoo 项目附带了一个用 Python 编写的 Javascript 压缩器。 尽管它与框架紧密集成,但您应该能够使用压缩器组件。 如果您获得最新的 SDK,则可以使用 tool/bin/compile.py 命令行工具来压缩 JS 文件,并具有各种选项(使用 -h 命令行开关获得帮助)。 我确信 buildout 可以通过 shell 调用它。
如果您想推出自己的压缩器,可以使用 qooxdoo SDK 附带的 Python 模块(在 tool/pylib/ 下)将压缩器绘制到您自己的 Python 代码中。 它没有记录,但您可以查看compile.py脚本如何实现这一点。
The qooxdoo project comes with a Javascript compressor written in Python. Although it's tightly integrated with the framework, you should be able to utilize the compressor component. If you get the latest SDK there is a tool/bin/compile.py command line tool you can use to compress JS files, with various options (use the -h command line switch for help). I'm sure builtout can call this through a shell.
If you want to roll your own you can draw the compressor into your own Python code, by using the Python modules that come with the qooxdoo SDK (under tool/pylib/). It's not documented but you can look at the compile.py script how to achieve that.
如果您使用 WSGI 中间件,您还可以使用 Fanstatic。 将其集成到堆栈中可能比“简单地”更改 Buildout 中的某些内容需要做更多的工作。 另一方面,Fanstatic 提供的东西非常好。 它允许您仅发送每个页面所需的脚本。 它还对“资源”(JavaScript 和 CSS)进行连接(捆绑)和缩小。
If you're using WSGI middleware you could also use Fanstatic. It's probably some more work to integrate it into your stack than "simply" changing something in Buildout. The things you get with Fanstatic on the other hand are pretty good. It allows you to only send exactly the scripts you need for every page. It also does concatting (bundling) and minification of "resources" (JavaScript and CSS).
对 Rushabh 提出的解决方案略有不同。 这是基于字符串的并且稍微简单一些,而不是基于文件的压缩函数:
A slightly different take on the solution proposed by Rushabh. Rather than a file based compress function, this is string based and somewhat simpler:
我创建了 Minifpy :一个使用 Python 合并和缩小 JS 和 CSS 文件的工具。
这个工具使用一个非常简单的 JSON 配置文件来定义文件是否必须合并、缩小:
Minifpy 检测 JS/CSS 文件上的任何修改并自动合并/缩小它们(对开发有用)。
I created Minifpy : a tool to merge and minify JS and CSS file by using Python.
This tool use a very easy JSON configuration file to define if files must be merge , minify or not :
Minifpy detect any modifications on JS/CSS files and merge/minify them automatically (useful for development).