You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
753 B
27 lines
753 B
9 years ago
|
'use strict'
|
||
|
|
||
|
const Vue = require('../../dist/vue.common.js')
|
||
|
const createRenderer = require('../../dist/server-renderer.js')
|
||
|
const renderToStream = createRenderer().renderToStream
|
||
|
const gridComponent = require('./common.js')
|
||
|
|
||
|
console.log('--- renderToStream --- ')
|
||
|
const self = (global || root)
|
||
|
self.s = self.performance.now()
|
||
|
|
||
|
const stream = renderToStream(new Vue(gridComponent))
|
||
|
let str = ''
|
||
|
const stats = []
|
||
|
stream.on('data', chunk => {
|
||
|
str += chunk
|
||
|
stats.push(self.performance.now())
|
||
|
})
|
||
|
stream.on('end', () => {
|
||
|
stats.push(self.performance.now())
|
||
|
stats.forEach((val, index) => {
|
||
|
const type = index !== stats.length - 1 ? 'Chunk' : 'Complete'
|
||
|
console.log(type + ' time: ' + (val - self.s).toFixed(2) + 'ms')
|
||
|
})
|
||
|
console.log()
|
||
|
})
|