A specialized set of basic functions utilities that are highly reusable without creating any dependencies : arrays, strings, chars, objects, numbers, maths, date, colors, etc.
Homepage npm JavaScript Download
npm install vegas-js-core@1.0.40
Vegas JS CORE - version 1.0.15 is an Opensource Library based on ECMAScript for develop crossplatform Rich Internet Applications and Games.
This library contains a set of libraries writing in Javascript and based on the ES6 standard :
package | description |
---|---|
core | The core package is specialized in functions utilities that are highly reusable without creating any dependencies : arrays, strings, chars, objects, numbers, maths, date, colors, etc. |
Under tree opensource licenses :
Download on Bitbucket the latest code, report an issue, ask a question or contribute :
Get started with the the Vegas JS API :
Send us your email to join the VEGAS community on Slack !
You can install VEGAS JS with NPM or Yarn.
$ yarn add vegas-js-core --dev
or
$ npm install vegas-js-core --save-dev
VEGAS JS CORE use Yarn with a serie of powerful packages (Babel, Mocha, etc.) to compile and build this library.
1 - The first time, initialize the project and run yarn :
$ yarn
2 - Test + compile all the libraries :
$ yarn build
1 - Build the ./dist/vegas-index.js : not minified + no comments + sourcemap.
$ yarn dev
2 - Build the ./dist/vegas-index.js and watch the changing into the ./src folder.
$ yarn watch
3 - Build the ./dist/vegas-core.min.js : minified + no comments.
$ yarn prod
4 - Build the ./dist/vegas-core.min.js and the ./dist/vegas-index.js libraries only.
$ yarn start
To launch the HTML examples, use the command :
$ yarn example ./examples/core/dom/isElement.html
This command launch with the BrowserSync tool the html page of the example in your browser.
We use the Mocha and the Chai (http://chaijs.com/) tools to run the unit tests of the VEGAS JS libraries.
1 - Run all unit tests
$ yarn test
2 - Run a specific library, use one of this command :
The --match option trigger the unit test engine (based on Mocha) to only run tests matching the given pattern which is internally compiled to a RegExp, for examples :
$ yarn test -g core.maths
Run all the core.maths package unit tests.
$ yarn test -g core.arrays.contains
$ yarn test -g core.colors.distance
Run only the core.colors.distance unit tests or the core.arrays.contains module unit tests.
The --reporter option define the unit test result rendering in the terminal with the values : 'spec', 'dot', 'landing', 'dot', 'nyan', 'list', 'mochawesome'. By default the 'spec' value is used.
$ yarn test --reporter nyan
The documentation of the framework is based on JSDoc.
Run the documentation build with gulp :
$ yarn doc
The documentation is generated in the folder : ./docs/bin