Skip to content
dat.gui is a lightweight controller library for JavaScript.
Branch: master
Clone or download
Latest commit c2edd82 Mar 30, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
build
src/dat
tests
.babelrc Use Rollup for UMD and ES6 builds. Jan 21, 2018
.gitignore Shorten localStorage check. Apr 28, 2018
API.md Bump docs. Mar 30, 2019
CHANGELOG.md Update CHANGELOG.md. Feb 17, 2018
LICENSE
README.md
bower.json
example.html
licenseBanner.txt
package-lock.json 0.7.6 Mar 30, 2019
package.json
rollup.config.js
rollup.config.min.js

README.md

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:

You can’t perform that action at this time.