Skip to content
This repository was archived by the owner on Mar 2, 2020. It is now read-only.

Getting Started

dev-nicolaos edited this page Apr 11, 2019 · 4 revisions

FSLDOM is available in two formats:

  • as an ES6 module that can be included via an import statement
  • as an IIFE which creates a global variable fD

Each format is available as minified and uncompressed bundles. The minified versions are recommended for production.

Installation Options

  1. Link directly to FSLDOM (hosted on Netlify's ADN)
  import fD from 'https://fsldom.dev/2.0.0/fsldom-es.min.js';
  <script src="https://fsldom.dev/2.0.0/fsldom.min.js"></script>
  1. Download FSLDOM and reference it locally
  import fD from './local/path/to/fsldom-es.min.js';
  <script src="local/path/to/fsldom.min.js"></script>

Clone this wiki locally