Go to file
Daniel Kaspo d9ec50f859 Use `fs` library so even Windows users can run build. 2017-06-12 20:20:52 -04:00
common translator names 2017-06-02 00:45:00 +04:00
jest_config support translations markup 2017-05-26 02:05:11 +04:00
spec tarnslate: html entites test 2017-06-02 00:13:59 +04:00
static add static readme back in (webpack requirements) 2017-04-12 17:39:09 -05:00
webpack_config Use `fs` library so even Windows users can run build. 2017-06-12 20:20:52 -04:00
.babelrc create babelcrc with flow support 2017-04-11 23:58:49 -05:00
.editorconfig cleanup header 2017-05-24 03:06:01 +04:00
.eslintrc.json create eslint 2017-04-11 23:59:11 -05:00
.flowconfig make flow work with aliasing 2017-05-25 02:39:58 +04:00
.gitignore add .idea to gitignore 2017-04-12 00:01:39 -05:00
.travis.yml dont email on test failures; we'll know in the github ui 2017-05-23 02:14:49 -05:00
LICENSE Initial commit 2016-12-04 02:35:28 +01:00
README.md readme tweaks to remove boilerplate-specific config 2017-04-26 22:59:16 -05:00
package.json tarnslate: html entites test 2017-06-02 00:13:59 +04:00

README.md

MyEtherWallet

MyEtherWallet (v4+)

Run:

npm run dev # run app in dev mode

Build:

npm run build # build app

It generates app in dist folder.

Test:

npm run test # run tests with Jest

Folder structure:

│
├── 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
│   ├── index.jsx - entry
│   ├── index.html
├── static
├── webpack_config - Webpack configuration
├── jest_config - Jest configuration