Go to file
Daniel Ternyak 04d17f716e tidy up webpack config 2017-04-14 02:12:20 -05:00
common Use prop-types package instead of React.PropTypes. 2017-04-14 01:27:01 -05:00
jest_config create default jest config 2017-04-12 00:01:02 -05:00
static add static readme back in (webpack requirements) 2017-04-12 17:39:09 -05:00
webpack_config tidy up webpack config 2017-04-14 02:12:20 -05:00
.babelrc create babelcrc with flow support 2017-04-11 23:58:49 -05:00
.eslintrc.json create eslint 2017-04-11 23:59:11 -05:00
.flowconfig create flowconfig 2017-04-12 00:01:57 -05:00
.gitignore add .idea to gitignore 2017-04-12 00:01:39 -05:00
LICENSE Initial commit 2016-12-04 02:35:28 +01:00
README.md re-add static folder to readme doc 2017-04-12 17:38:25 -05:00
package.json add prop-types package 2017-04-14 01:27:29 -05: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
│   ├── styles - styles folder with scss vars, mixins, etc.
│   ├── index.jsx - entry
│   ├── index.html
├── static
├── webpack_config - Webpack configuration
├── jest_config - Jest configuration