From the Hindi word, meaning Foundation.
A collection of VueJS components based off the Zurb Foundation for Sites framework. Each component shall be completely configurable using props.
The component collection is still in the early stages of development and what may work one day, may not work the next. Please don't use in production for the time being as we'd hate for any breaking changes to affect you.
The basic requirements for installing NeeV are NodeJS & NPM (or Yarn).
All of the package dependencies are managed by NPM (or Yarn), so to install these just run:
# install dependencies
npm install
# or
yarn installTo start a development server, with hot reload, run:
npm run devWhen building for production, you can produce a fully minified build using:
npm run buildAdditionaly, if you would also like to view the analyzer report when building, simply append the --report flag to the command, like so:
npm run build --reportTo run the basic unit tests, use:
npm run unitFor end to end testing, run:
npm run e2eTo run all tests, then it's:
npm run test