D3
From Publication Station
D3.js (https://d3js.org/) is a JavaScript library for manipulating documents based on data. D3 helps you bring data to life using HTML, SVG, and CSS.
D3 allows you to construct and manipulate web elements such as tables or SVGs from data
Download
https://github.com/d3/d3/releases/download/v4.3.0/d3.zip
Link
Remote: <script src="https://d3js.org/d3.v4.min.js"></script>
local: <script src="d3.v4.min.js"></script>
D3 selectors
Smilar to jQuery
d3.selectAll("p").style("color", "white");