Lightweight controller library for JavaScript.
Go to file
2019-01-08 10:18:48 -08:00
build 0.7.4 2019-01-04 16:26:08 -08:00
src/dat Fixed closed param (fixes #202) 2019-01-08 10:18:48 -08:00
tests Test .removeFolder(). 2017-12-23 11:59:44 -05:00
.babelrc Use Rollup for UMD and ES6 builds. 2018-01-20 21:08:15 -08:00
.gitignore Shorten localStorage check. 2018-04-28 14:11:28 -07:00
API.md Add docs for 'hideable' option. 2018-03-11 15:23:23 -07:00
bower.json Remove deprecated .version from bower.json 2018-01-22 20:48:55 -08:00
CHANGELOG.md Update CHANGELOG.md. 2018-02-16 20:03:24 -08:00
example.html Add <meta/> tag for testing example on mobile devices. 2018-01-20 21:09:19 -08:00
LICENSE Add Apache 2.0 License 2014-12-01 11:01:01 -08:00
licenseBanner.txt Use Rollup for UMD and ES6 builds. 2018-01-20 21:08:15 -08:00
package-lock.json 0.7.4 2019-01-04 16:26:08 -08:00
package.json 0.7.4 2019-01-04 16:26:08 -08:00
README.md Add syntax highlighting to readme 2018-09-15 14:19:35 -07:00
rollup.config.js Bump dependencies. 2018-05-05 15:13:44 -07:00
rollup.config.min.js Bump dependencies. 2018-05-05 15:13:44 -07:00

dat.GUI

A lightweight graphical user interface for changing variables in JavaScript.

Get started with dat.GUI by reading the tutorial or the API documentation.

Packaged Builds

The easiest way to use dat.GUI in your code is by using the built source at 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:

<script type="text/javascript" src="dat.gui.min.js"></script>

Installing from npm

$ npm install --save dat.gui
// CommonJS:
const dat = require('dat.gui');

// ES6:
import * as dat from 'dat.gui';

const gui = new dat.GUI();

Directory Contents

├── build - Compiled source code.
├── src - Source files.
└── tests - Tests.

Building your own dat.GUI

In the terminal, enter the following:

$ npm install
$ npm run build

npm scripts

  • npm run build - Build development and production version of scripts.
  • npm run dev - Build development version of script and watch for changes.

Working with Content Security Policy

If you're using a server with a Content Security Policy in place that blocks 'unsafe-inline', you will have problems when dat.gui.js tries to inject style information. To get around this, load 'build/dat.gui.css' as an external style sheet.

Changes

View the Change Log

Thanks

The following libraries / open-source projects were used in the development of dat.GUI: