npm install dom-styleInline CSS manipulation library
``js
var style = require('dom-style')
style(document.body, 'background-color', 'red')
style(document.body, {
'font-color': 'yellow',
'border': '5px solid black'
})
`
`bash``
$ npm install dom-style