
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
A lightweight graphical user interface for changing variables in JavaScript.
Get started with dat.GUI by reading the tutorial at http://workshop.chromeexperiments.com/examples/gui.
exdat name on npm. I don't want to take
dat.gui name, but I have very little believe that upstream repository will ever
be migrated to npm. That said, I've also submitted PR upstreamgui.removeFolder(folderName);gui.update()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>
Install the module:
npm install anvaka/dat.gui
Use it:
var dat = require('dat.gui');
var obj = { x: 5 };
var gui = new dat.GUI();
gui.add(obj, 'x').onChange(function() {
// obj.x will now have updated value
});
In the terminal, enter the following:
npm start
This will create a browserified build of dat.GUI at build/dat.gui.js and its
minified version at build/dat.gui.min.js.
height parameter from GUI constructor. Scrollbar automatically induced when window is too short.dat.GUI.autoPlace parameter removed. Use new dat.GUI( { autoPlace: false } ). See Custom Placement.gui.autoListen and gui.listenAll() removed. See Updating The Display Manually.dat.GUI.load removed. See Saving Values.#0.4
The following libraries / open-source projects were used in the development of dat.GUI:
FAQs
A lightweight graphical user interface for changing variables in JavaScript.
We found that exdat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.