Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 632 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 632 Bytes

seajs-flush

A Sea.js plugin for collecting HTTP requests and sending all at once

Install

Install with spm:

$ spm install seajs/seajs-flush

Usage

<script src="path/to/sea.js"></script>
<script src="path/to/seajs-combo.js"></script>
<script src="path/to/seajs-flush.js"></script>

<script>
seajs.use(['a', 'b'], function(a, b) {
  // ...
})

seajs.use(['c', 'd'], function(c, d) {
  // ...
})

// The combined request is http://test.com/path/to/??a.js,b.js,c.js,d.js
seajs.flush()
</script>

For more details please visit 中文文档