@cakemail-org/ui-components
v7.9.12
Published
Cakemail UI components
Keywords
Readme
UI-component
The ui-component is an application written in react/js. It is a frontend app library for the Cakemail-app.
Contributors guide
https://github.com/cakemail/ui-components/wiki/Getting-started
Installation
First, you need Node installed on your machine.
Installing node
To install node on your machine:
Windows and Mac : https://nodejs.org/en/download/
Debian:
sudo apt install npmFedora:
sudo dnf install npmInstallation dependencies
Then install all the dependencies in your project folder with npm
npm installStarting
To start your application locally, you must run the following command:
npm run startBy default, the application runs at : http://localhost:6006/
To change webpacks configuration, open the file named : webpack.config.dev.js
Testing
Jest / enzyme are used to create tests.
To run them once:
npm run testTo run the coverage with additional bash options:
npm run testWatch