Loading the library# Choose your favorite import method From installed sources# ES6 Module (recommended)CommonJS 1 2 3<script type="module"> import { makeForm } '@simomosi/dynamic-forms'; </script> 1const { makeForm } = require('@simomosi/dynamic-forms'); From CDN# Script tagES6 Module 1<script src = 'https://unpkg.com/@simomosi/dynamic-forms@latest'></script> 1 2 3<script type="module"> import { makeForm } from 'https://unpkg.com/@simomosi/dynamic-forms@latest'; </script> Be careful to not include the library twice!