Installing Ferp in Your Application
Installing
Installing from npm or yarn
npm install --save ferp@^2
# OR
yarn add ferp@^2import { app, effects } from 'ferp';const { app, effects } = require('ferp');Using a CDN
<script src="https://unpkg.com/ferp@2"></script>const { app, effects } = window.ferp;<script type="module">
import { app, effects, util } from 'https://unpkg.com/ferp?module=1';
</script>Last updated