frmr v1.0.0-beta.1
Frmr
Frmr is a javascript architecture solution for your vanillajs / jQuery apps. It's intented be used with server-side rendered apps, where organising front-end code can be a pain.
/!\ This is a work in progress, the API is subject to change, DO NOT use yet, wait for the 1.0.0 release
How to use
TODO
How to contribue
Setup the project
Clone the repo
Install NVM which allows you to manage your node version
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash- (In the project folder) Install the node version specified for the project
nvm install-(Optional) Install AVN which allows you to automatically switch node version to the version specified in the .nvmrc file when switching between project folders
- Install the dependencies using yarn
yarn installDevelopment
Start the local server
npm startAnd check http://localhost:3000 in your browser.
Building
Builds the project in the /dist folder using:
npm run buildBuild the project and analyze its dependencies (useful when debugging bundle size)
npm run build:analyzeAnd check http://localhost:8888 in your browser.