The
aframe.js
group of builds are deprecated and will be removed. Use theaframe-master.js
group of builds instead.
To include these files, you can either download and serve them locally. Or
serve directly from rawgit.com
CDN.
<html>
<head>
<script src="https://rawgit.com/aframevr/aframe/master/dist/FILENAME"></script>
</head>
<!-- ... -->
</html>
If serving from rawgit.com
, we recommend locking the file to a specific hash
rather than tracking the master branch to prevent regressions:
<script src="https://rawgit.com/aframevr/aframe/HASH/dist/FILENAME"></script>
These builds are available via https://aframe.io/releases/x.x.x/<filename>
where x.x.x
is the latest stable version.
aframe-vx.x.x.min.js
- Minified production build, recommended.aframe-vx.x.x.min.js.map
- Source maps for minified production build.aframe-vx.x.x.js
- Unminified build, for development or debugging.aframe-vx.x.x.js.map
- Source maps for unminified build.
These master builds are unstable bleeding-edge unstable builds that contain newer fixes or features from the master branch on GitHub, but may contain regressions or breaking changes.
- [
aframe-master.min.js
][aframe-master.min.js] - Minified production build. - [
aframe-master.min.js.map
][aframe-master.min.js.map] - Source maps for minified production build. - [
aframe-master.js
][aframe-master.js] - Unminified build, for development or debugging. - [
aframe-master.js.map
][aframe-master.js.map] - Source maps for unminified build.