Installation
There are multiple ways to obtain the dist
files of dash.js to be included in your application
CDN hosted files
The latest minified files have been hosted on a global CDN and are free to use in production:
In addition, all the releases are available under the following urls. Replace “vx.x.x” with the release version, for instance “v3.1.0”.
An overview of the dash.js releases can be found on Github.
Build dist files yourself
To build the dist
files of the latest stable release yourself run the following steps:
- Install Core Dependencies
- Checkout project repository (default branch:
development
)git clone https://github.com/Dash-Industry-Forum/dash.js.git
- Change branch to
master
git checkout -b master origin/master
- Install dependencies
npm install
- Build the
dist
files.npm run build
NPM package
We publish dash.js to npm. Examples of how to use dash.js in different module bundlers can be found in the samples/modules
directory.