Inglés | 中文
Una herramienta de análisis estadístico para pruebas de rendimiento
El nombre es corto para HI por formance O HI GH PER FORMANCE
Hola chicos, presenten su problema en inglés
请使用英语提 Problema
npm install hiper -g
# or use yarn:
# yarn global add hiper AVISO: It takes period (m)s to load ... El period significa que esta prueba lleva tiempo . Entonces, sube y el período sube. No es un error
| Llave | Valor |
|---|---|
| Tiempo de búsqueda de DNS | DomainlookUpend - DomainlookUpStart |
| Tiempo de conexión TCP | Connectend - Connectstart |
| TTFB | ResponseStart - RequestStart |
| Descargar la hora de la página | Responseend - ResponseStart |
| Después de Dom, tiempo de descarga | DomComplete - Dominteractive |
| Tiempo de pantalla blanca | Dominteractive - NavegationStart |
| Dom Tiempo listo | DomContentLoadedEventend - NavigationStart |
| Tiempo de carga | Loadventend - NavegationStart |
https://developer.mozilla.org/en-us/docs/web/api/performancetiming
hiper --help
Usage: hiper [options] [url]
A statistical analysis tool for performance testing
Options:
-v, --version output the version number
-n, --count < n > specified loading times (default: 20)
-c, --config < path > load the configuration file
-u, --useragent < ua > to set the useragent
-H, --headless [b] whether to use headless mode (default: true)
-e, --executablePath < path > use the specified chrome browser
--no-cache disable cache (default: false)
--no-javascript disable javascript (default: false)
--no-online disable network (defalut: false)
-h, --help output usage informationPor ejemplo
# We can omit the protocol header if has omitted, the protocol header will be `https://`
# The simplest usage
hiper baidu.com
# if the url has any parameter, surround the url with double quotes
hiper " baidu.com?a=1&b=2 "
# Load the specified page 100 times
hiper -n 100 " baidu.com?a=1&b=2 "
# Load the specified page 100 times without `cache`
hiper -n 100 " baidu.com?a=1&b=2 " --no-cache
# Load the specified page 100 times without `javascript`
hiper -n 100 " baidu.com?a=1&b=2 " --no-javascript
# Load the specified page 100 times with `headless = false`
hiper -n 100 " baidu.com?a=1&b=2 " -H false
# Load the specified page 100 times with set `useragent`
hiper -n 100 " baidu.com?a=1&b=2 " -u " Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 " .json y .js config {
// options Pointing to a specific chrome executable, this configuration is generally not required unless you want to test a specific version of chrome
"executablePath" : "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" ,
// required The url you want to test
"url" : "https://example.com" ,
// options Cookies required for this test. It's usually a cookie for login information Array | Object
"cookies" : [ {
"name" : "token" ,
"value" : "9+cL224Xh6VuRT" ,
"domain" : "example.com" ,
"path" : "/" ,
"size" : 294 ,
"httpOnly" : true
} ] ,
// options default: 20 Test times
"count" : 100 ,
// options default: true Whether to use headless mode
"headless" : true ,
// options default: false Disable cache
"noCache" : false ,
// options default: false Disable javascript
"noJavascript" : false ,
// options default: false Disable network
"noOnline" : false ,
// options Set the useragent information
"useragent" : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36" ,
// options Set the viewport information
"viewport" : {
// options
"width" : 375 ,
// options
"height" : 812 ,
// options default: 1 devicePixelRatio
"deviceScaleFactor" : 3 ,
// options default: false Whether to simulate mobile
"isMobile" : false ,
// options default: false Whether touch events are supported
"hasTouch" : false ,
// options default: false Is it horizontal or not
"isLandscape" : false
}
}Tener un archivo JS para la configuración permite a las personas usar variables ENV. Por ejemplo, supongamos que quiero probar el sitio en un estado autenticado. Puedo pasar una cookie que se usa para identificarme a través de variables ENV y tener un archivo de configuración basado en JS lo simplifica. Por ejemplo
module . exports = {
... .
cookies : [ {
name : 'token' ,
value : process . env . authtoken ,
domain : 'example.com' ,
path : '/' ,
httpOnly : true
} ] ,
... .
} # Load the above configuration file (Let's say this file is under /home/)
hiper -c /home/config.json
# Or you can also use JS files for configuration
hiper -c /home/config.jsDespués de haber desarrollado un proyecto u optimizar el rendimiento de un proyecto,
¿Cómo medimos el rendimiento de este proyecto?
Un enfoque común es observar los datos en el performance y network en la Dev Tool , registrar algunas métricas clave de rendimiento y actualizarlos varias veces antes de mirar esas métricas de rendimiento,
A veces encontramos que debido al pequeño tamaño de la muestra, la carga actual de red/CPU/memoria se ve muy afectada y, a veces, el proyecto optimizado es más lento que antes de la optimización.
Si hay una herramienta, solicite la página web muchas veces y luego elimine los diversos indicadores de rendimiento promedio, podemos saber con mucha precisión que la optimización es positiva o negativa.
Además, también puede hacer una comparación y obtener datos precisos sobre cuánto ha optimizado . Esta herramienta está diseñada para resolver el punto de dolor.
Al mismo tiempo, esta herramienta también es una buena herramienta para que podamos aprender sobre el "proceso de carga y representación del navegador" y "optimización del rendimiento", para que no obtengamos conclusiones equivocadas cuando hay muy pocas muestras
MIT
Bienvenido estrella y relaciones públicas
Copyright (c) 2018 Liyanfeng (pod4g)