Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lafikl/rwdperf
Performance testing tool for Responsive web designs.
https://github.com/lafikl/rwdperf
Last synced: about 1 month ago
JSON representation
Performance testing tool for Responsive web designs.
- Host: GitHub
- URL: https://github.com/lafikl/rwdperf
- Owner: lafikl
- License: mit
- Created: 2014-09-24T18:55:27.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-20T06:47:19.000Z (over 8 years ago)
- Last Synced: 2023-11-07T15:20:40.638Z (about 1 year ago)
- Language: HTML
- Homepage:
- Size: 162 KB
- Stars: 619
- Watchers: 28
- Forks: 24
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
RWDPerf
=======Performance testing for Responsive web design websites.
Features
========
- Emulate mobile devices, desktop, tablets.
- Find unused/hidden elements
- Find unused images
- Calculate page weight
- Track requests## Sample
![Sample](https://raw.githubusercontent.com/lafikl/RWDPerf/master/screenshot.png)Install
========
```
npm install rwdperf -g
```CLI Usage
========
First you need to start chrome with these flags (Mac)```
sudo /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222 ----disable-cache
```
**NOTE** You can do the same for other OS, just change the path to chrome (e.g `chrome.exe` in Windows)then start another session and enter this command
```
rwdperf -l http://hirondelleusa.org/ --width 400 --height 300 -m true -d 2 -s 2 -u "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53"
```## List of all options
```
Usage: rwdperf [options]Options:
--help output usage information
-V, --version output the version number
-l, --link Link to be tested
-p, --port [val] set a port, defaults to 3000
-m, --mobile Emulate mobile
-e, --emulateViewport Emulate viewport, defaults to true
-d, --deviceScaleFactor [val] Device scale factor, defaults to 1
-s, --scale [val] scale, defaults to 1
-w, --width Viewport width
-h, --height Viewport height
-u, --userAgent Override user-agent
-j, --json Return results as JSON
```API Usage
========
First you need to start chrome with these flags (Mac)```
sudo /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222 ----disable-cache
```then you can consume that directly from your code.
```javascript
var Rwdperf = require('rwdperf');new Rwdperf({
link: "http://google.com",
mobile: true,
emulateViewport: true,
deviceScaleFactor: 1,
scale: 1,
width: 400,
height: 500,
userAgent: null,
cb: handler
}).init();function handler(err, data) {
if ( err ) return console.log(err);// all worked out! do amazing stuff with the data...
console.log(JSON.stringify(data));
}
```Roadmap
=======
- Find downscaled images
- unused CSS
- Test multiple urls
- Add pre-configured device metrics (e.g iPhone 6)
- Run chrome through the tool itself [#6](https://github.com/lafikl/RWDPerf/issues/6)