-
Notifications
You must be signed in to change notification settings - Fork 0
Guide Getting Started
danidre14 edited this page Jul 8, 2020
·
10 revisions
The first step to any FlevaR application is to include it into your HTML/JavaScript project.
FlevaR can be imported in one of the following ways:
Using npm:
$ npm install flevarUsing yarn:
$ yarn add flevarUsing 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.