get-outer-size
install
$ npm install --save get-outer-size
use
; const element = document;const width height = ;// width = element width + border width + margin-right + margin-left// height = element width + border width + margin-top + margin-bottom
example
const element = document;const width height = ;width; // => 140 (100px + 20px + 20px)height; // => 125 (100px + 10px + 15px)