Download WebDataRocks to get the JavaScript and CSS locally, refer from CDN, or include it with npm package manager.
ZIP package
Download ZIP containing all compiled and minified files and simply include them into your project:
<link href="webdatarocks.min.css" rel="stylesheet"/> <script src="webdatarocks.toolbar.min.js"></script> <script src="webdatarocks.js"></script>
WebDataRocks CDN
Skip downloading and include the files directly from WebDataRocks CDN.
Refer to the latest version available:
<link href="https://cdn.webdatarocks.com/latest/webdatarocks.min.css" rel="stylesheet"/> <script src="https://cdn.webdatarocks.com/latest/webdatarocks.toolbar.min.js"></script> <script src="https://cdn.webdatarocks.com/latest/webdatarocks.js"></script>
Also, it is possible to specify the exact version, e.g. 1.0.0
:
<link href="https://cdn.webdatarocks.com/1.0.0/webdatarocks.min.css" rel="stylesheet"/> <script src="https://cdn.webdatarocks.com/1.0.0/webdatarocks.toolbar.min.js"></script> <script src="https://cdn.webdatarocks.com/1.0.0/webdatarocks.js"></script>
npm package manager
Install WebDataRocks in Node.js projects with the npm package:
npm i webdatarocks --save
Then, include the CSS and JS files:
<link href="node_modules/webdatarocks/webdatarocks.min.css" rel="stylesheet"/> <script src="node_modules/webdatarocks/webdatarocks.toolbar.min.js"></script> <script src="node_modules/webdatarocks/webdatarocks.js"></script>
The next step is to embed WebDataRocks into your project. Check out the Quick start tutorial.