The current version of dygraphs is 1.1.0. Most users will want to download minified files for this version:

There's a hosted version of dygraphs on cdnjs.com:

<script src="//cdnjs.cloudflare.com/ajax/libs/dygraph/1.1.0/dygraph-combined.js"></script>

You can install dygraphs using NPM or Bower.

To install using NPM:

$ npm install dygraphs
# dygraphs is now in node_modules/dygraphs/dygraph-combined.js

To install using bower:

$ bower install dygraphs
# dygraphs is now in bower_components/dygraphs/dygraph-combined.js

Most distributions include a source map. For non-concatenated JS, see dygraph-dev.js on github.

To generate your own minified JS, run:

git clone https://github.com/danvk/dygraphs.git
./generate-combined.sh

This will create a dygraph.min.js file in the dygraphs directory.

You may also download files for previously-released versions:

See Version History for more information on each release.