Skip to content

Guide Getting Started

danidre14 edited this page Jul 8, 2020 · 10 revisions

Getting Started

The first step to any FlevaR application is to include it into your HTML/JavaScript project.

Installing:

FlevaR can be imported in one of the following ways:

Using npm:

$ npm install flevar

Using yarn:

$ yarn add flevar

Using cdn:

<script src="https://unpkg.com/flevar@{version}/dist/flevar.js"></script>
<!-- OR -->
<script src="https://unpkg.com/flevar/dist/flevar.js"></script>

Note: It is recommended to always import the package using the version method, to avoid possible breaking changes in any latest versions.


Now that the engine has been included in the project, let's initialize it.

Clone this wiki locally