A lightweight graphical user interface for changing variables in JavaScript.
Get started with dat.GUI by reading the API documentation.
build/dat.gui.min.js. These built JavaScript files bundle all the necessary dependencies to run dat.GUI.In your head tag, include the following code:
``html`
`bash`
$ npm install --save dat.gui
`js
// CommonJS:
const dat = require('dat.gui');
// ES6:
import * as dat from 'dat.gui';
const gui = new dat.GUI();
`
``
├── build - Compiled source code.
├── src - Source files.
└── tests - Tests.
In the terminal, enter the following:
```
$ npm install
$ npm run build
- npm run build - Build development and production version of scripts.
- npm run dev - Build development version of script and watch for changes.