Package Exports
- aframe
- aframe/src
- aframe/src/core/propertyTypes
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (aframe) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
A-Frame
Building blocks for the VR Web.
A-Frame is a library for creating virtual reality web experiences.
- Virtual Reality: Drop in the library and have a WebVR scene within a few lines of markup.
- Based on the DOM: Manipulate with JavaScript, use with your favorite libraries and frameworks.
- Entity-Component-System: Based on an entity-component-system pattern for better composability and flexibility.
Find out more:
Usage
CodePen
If you want to get started immediately, just fire up this CodePen example scene!
Downloads
If you would like to embed this library in your project, simply include this file:
Or if you'd prefer the unminified version for local development (with source maps):
Also, be sure to check out the awesome examples (or the ones in this repository).
npm
First install from npm:
npm install aframeAnd in your Browserify/Webpack modules, simply require the module:
require('aframe')Local Installation and Development
Alternatively, you can clone this repository to work locally on this project and explore the examples.
git clone git@github.com:aframevr/aframe.git
cd aframe && npm installTo start the local development server:
npm startAnd fire up http://localhost:9000!
Maintainers
Ensure you have cloned the repo and installed the dependencies.
Publishing to npm
To increment the preminor version of the package (e.g., 0.1.19 to 0.1.20) and create a git tag (e.g., v0.1.20):
npm run release:bumpNOTE: npm versions cannot be unpublished.
Once the package is 100% ready to go, to push the new version to npm (e.g., 0.1.20) and to the new tag to GitHub (e.g., v0.1.20):
npm run release:pushUpdating dist Files
npm run dist
git commit -am 'Bump dist'Publishing to GitHub Pages
To publish to https://aframevr.github.io/aframe/:
npm run ghpagesTo publish to https://your_username.github.io/aframe/:
npm run ghpages your_usernameLicense
This program is free software and is distributed under an MIT License.