ciffi-js-modules
JS Modules
- install with npm
npm install --save @ciffi-js/moduleName;
- install with yarn
yarn add @ciffi-js/moduleName;
- use
import Module from "@ciffi-js/moduleName";
read more from each module
full documentation available at ciffi.it/ciffi-js
Development
prepare project development
- npm run prepare-dev
run frontend project
- npm start
run test
- npm test
run test with watch mode
- npm run test:dev
run test with coverage report
- npm run test:coverage
run test with watch mode and coverage report
- npm run test:dev:coverage