MyCrypto/README.md

41 lines
998 B
Markdown
Raw Normal View History

2016-12-03 17:35:28 -08:00
# MyEtherWallet
MyEtherWallet (v4+)
2017-04-11 22:06:09 -07:00
#### Run:
```bash
npm run dev # run app in dev mode
```
#### Build:
```bash
npm run build # build app
```
It generates app in `dist` folder.
#### Test:
```bash
npm run test # run tests with Jest
```
## Folder structure:
```
2017-04-11 22:06:09 -07:00
├── common - Your App
│ └── actions - application actions
│ ├── api - Services and XHR utils(also custom form validation, see InputComponent from components/common)
│ ├── components - components according to "Redux philosophy"
│ ├── config - frontend config depending on REACT_WEBPACK_ENV
│ ├── containers - containers according to "Redux philosophy"
│ ├── reducers - application reducers
│ ├── routing - application routing
│ ├── styles - styles folder with scss vars, mixins, etc.
│ ├── index.jsx - entry
│ ├── index.html
├── webpack_config - Webpack configuration
├── jest_config - Jest configuration
```