Linux 软件免费装
Banner图

Torque - Optimise the transport of your Website

开发者 hexydec
更新时间 2024年4月30日 06:00
PHP版本: 8.1 及以上
WordPress版本: 6.5.2
版权: GPLv3
版权网址: 版权信息

标签

performance security optimization minify minification

下载

0.6.4 0.7.0 0.7.1 0.7.4 0.7.5 0.5.3 0.6.3 0.7.2 0.7.3 0.5.1 0.5.2 0.5.4 0.5.5 0.6.1 0.6.0 0.6.2 0.5.7 0.6.5 0.5.8 0.5.6

详情介绍:

Take advantage of best in class minification to squeeze every byte out of your HTML, CSS, and Javascript, combine this with the control over cache headers, lazy loading, and more, and your website will not only be noticeably faster, your server will be under less load, enabling you to serve more clients with your existing metal. The plugin also includes a suite of security features to help you secure your website, including full control over Content-Security-Policy, which enables you to control which domains can embed assets on your website, and what domains you can connect to. This prevents malicious scripts from being able to run and more. Features See the Torque Github homepage for more information.

安装:

Upon installation of the plugin, most of the settings will be disabled. Only the settings in the "Caching" section will be implemented. To get the plugin up and running to a basic level, enable some settings in the "Settings" section. It is recommended that you do not use this plugin with other minification plugins.

屏幕截图:

  • The Settings screen enables you to set some basic optimisation settings
  • The HTML tab enables you to specify your HTML minification settings
  • The CSS tab enables you to specify your CSS minification settings
  • The Javascript tab enables you to specify your Javascript minification settings
  • The Caching screen gives you some browser cache and shared cache settings
  • The Security screen enables you to set some security headers
  • The Policy screen enables you to specify a Content-Security-Policy
  • The Preload screen lets you select which assets will be preloaded

常见问题:

What kind of compression can I expect from minification?

Depending on how compressible you content is you can expect ~10 - 15% compression of your page before gzip compression, after gzip you can expect ~ 5 - 10%.

How long does it take to minify my page?

You can tick the "Show stats in the console" option to see how long it takes to minify your page and what compression was achieved, view the output in the developer console (Press F12). Note that inline CSS and Javascript is cached in a Wordpress transient, so if you page has inline code, it should be faster after first run.

What are the tradeoffs for minifying my HTML?

You are swapping the time it takes to send the extra bytes down the wire to your clients for extra CPU time on the server. Torque uses my other project HTMLdoc to minify your code, it has been designed to use on the fly and has been optimised for speed. Even so I recommend you use some sort of cache in front of your PHP code to make sure your time-to-first-byte is optimised, then the extra CPU time doesn't matter.

How can I test if my page is faster after using your plugin?

The best tool to use is Lighthouse, which is built into Blink based browsers such as Chrome, Edge and others:

  • Press F12 to bring up the developer tools
  • Select the "Lighthouse" tab
  • Click "Generate Report"
Do this before you enable the plugin, and then again after you have enabled and configured the plugin. The performance metric should be higher with the plugin. You can also look at the Network tab in the developer console and see that the total download size and number of requests is lower (With combne and minify enabled).

I enabled minification and it broke my site

Some advanced minification optimisations can cause issues with your website's layout, or break your Javascript depending on how your CSS/Javascript selectors are setup. For example, you can strip default attributes from your HTML such as type="text" on the <input> object. If you have a CSS or Javascript selector that relies on this attribute being there, such as input[type=input], the selector will no longer match. See HTMLdoc: Mitigating Side Effects of Minification for solutions.

Why is HTMLdoc best in class?

Other minification plugins blindly find and replace patterns within your code to make it smaller, often using outdated 3rd-party libraries. HTMLdoc is a compiler, it parses your code to an internal representation, optimises it, and then compiles it back to code. The result is better reliability, compression, and performance. It also bundles CSS and Javascript compilers from the same author for minifying your inline CSS and Javascript which use the same technology to make less mistakes and offer better compression. All three libraries have automated test suites to ensure reliability, and should outperform other PHP based minifiers in terms of compression.

What is Content Security Policy?

Content Security Policy (CSP) is a very powerful browser security feature that only enables assets to be downloaded from the specified domains. Any assets that are downloaded from domains that are not listed will be blocked.

How do I setup my Content Security Policy?

Using the developer tools in your browser (Press F12), look at the network tab on each page, and note down the domains that are used for different assets, along with their asset type. You can then enter those domains in to the relevant CSP boxes. Be sure to run any extra features of your website that use Fetch or XHR, as these connections are also bound by CSP. Once the domains are entered, and with the CSP setting set to "Enabled only for me (testing)", go through the pages of your website again, checking for Content-Security-Policy errors in the console. If there are errors, the console should indicate which domain and category trigger the CSP error. Note that your website may not function correctly whilst you do this if the CSP is not correct, but this behaviour will only be exhibited for you with the testing setting. When you are happy that all domains and settings are set correctly, you can enable the CSP setting.

How does preload work?

Preload works by notifies the browser as soon as possible of assets it will need to load the page, this enables it to start downloading them sooner than if it discovered them on page. For example font files are normally linked from the stylesheet, so the browser has to download and parse the stylesheet before it can request them. By preloading, when it discovers that it needs those assets, they will already be downloading. Thus your website will load faster.

更新日志:

Version 0.7.5 Version 0.7.4 Version 0.7.3 Version 0.7.2 Version 0.7.1 Version 0.7.0 Version 0.6.5 Version 0.6.4 Version 0.6.3 Version 0.6.2 Version 0.6.1 Version 0.6.0 Version 0.5.8 Version 0.5.7 Version 0.5.6 Version 0.5.5 Version 0.5.4 Version 0.5.3