0.1.3 • Published 5 years ago

web-performance-report v0.1.3

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

web-performance-report

前端性能上报,包括页面性能、错误上报、资源上报

用法:

import WebPerformance from 'web-performance-report'

// 使用 GET 上报到指定地址
WebPerformance({
  url: 'http://sample.com/report',   // 上报的地址
  disabled: false,
  reportError: true,
  reportResource: true
})

// 自定义方法上报
WebPerformance({}, (data) => {
  fetch('http://xxx-report.com/report', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify(data)
  })
})
0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago