Go to file
Daniel Ternyak 12fa008755 reformat everything 2017-07-03 22:28:56 -05:00
common reformat everything 2017-07-03 22:28:56 -05:00
flow-typed merge develop into 'swap_part_3' 2017-07-03 22:21:19 -05:00
jest_config fix test 2017-07-04 06:42:52 +04:00
spec reformat everything 2017-07-03 22:28:56 -05:00
static add static readme back in (webpack requirements) 2017-04-12 17:39:09 -05:00
webpack_config reformat everything 2017-07-03 22:28:56 -05: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 fix flow sagas errors 2017-07-04 03:59:27 +04: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 Revert "try building with node 6" 2017-07-04 04:13:35 +04:00
LICENSE
README.md readme tweaks to remove boilerplate-specific config 2017-04-26 22:59:16 -05:00
package.json remove dupe ethereumjs-util 2017-07-04 06:44:08 +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