vegas-js-polyfill
v1.0.9
Published
A specialized polyfill javascript library for the VEGAS JS libraries.
Downloads
5
Maintainers
Readme
VEGAS JS
Vegas JS Polyfill - version 1.0.8 is an Opensource Library based on ECMAScript for develop crossplatform Rich Internet Applications and Games.
This library contains a set of polyfills modules writing in Javascript and based on the ES6 standard.
About
- Author : Marc ALCARAZ (aka eKameleon) - Creative Technologist and Digital Architect
- Mail : ekameleon[at]gmail.com
- LinkedIn : https://www.linkedin.com/in/ekameleon/
License
Under tree opensource licenses :
Resources
⌜ Download
Download on Bitbucket the latest code, report an issue, ask a question or contribute :
⌜ Documentation
Get started with the the Vegas JS API :
⌜ Slack Community
Send us your email to join the VEGAS community on Slack !
Install
⌜ YARN / NPM
You can install VEGAS JS with NPM or Yarn.
$ yarn add vegas-js-polyfill --dev
or
$ npm install vegas-js-polyfill --save-dev
Building and test the libraries
VEGAS JS CORE use Yarn with a serie of powerful packages (Babel, Mocha, etc.) to compile and build this library.
⌜ Simple Build
1 - The first time, initialize the project and run yarn :
$ yarn
2 - Test + compile all the libraries :
$ yarn build
⌜ VEGAS JS Polyfill Build
1 - Build the ./dist/vegas-polyfill.js : not minified + no comments + sourcemap.
$ yarn dev
2 - Build the ./dist/vegas-polyfill.js and watch the changing into the ./src folder.
$ yarn watch
3 - Build the ./dist/vegas-polyfill.min.js : minified + no comments.
$ yarn prod
4 - Build the ./dist/vegas-core.polyfill.js and the ./dist/vegas-polyfill.js libraries only.
$ yarn core
⌜ Unit tests
We use the Mocha and the Chai (http://chaijs.com/) tools to run the unit tests of the VEGAS JS libraries.
Run all unit tests
$ yarn test