1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
🦊 Minimalized version of MetaMask for my own personal use.
Go to file
2018-04-16 11:47:06 -04:00
.circleci
app Maintain token prices using a background service 2018-04-16 11:47:06 -04:00
development Fix integration tests 2018-04-06 11:25:05 -07:00
docs Update QA_Guide.md 2018-04-05 16:15:55 -07:00
mascara Merge pull request #3894 from danjm/i3696-disablefirsttimeimportloading 2018-04-10 02:05:51 -07:00
notices
old-ui ローカライズファイル以外を元に戻した 2018-04-10 17:23:56 +09:00
test Maintain token prices using a background service 2018-04-16 11:47:06 -04:00
ui Maintain token prices using a background service 2018-04-16 11:47:06 -04:00
.babelrc
.dockerignore
.editorconfig
.eslintignore
.eslintrc
.gitattributes
.gitignore
.jshintrc
.nsprc
.nvmrc
.stylelintignore
.stylelintrc
.travis.yml
.yo-rc.json
CHANGELOG.md Merge branch 'master' into i3621-LogoPerformance 2018-04-09 13:56:59 -07:00
CONTRIBUTING.md
docker-compose.yml
Dockerfile
fonts
gulpfile.js
images Improved Ui Dev Mode 2016-07-01 14:23:37 -07:00
ISSUE_TEMPLATE
LICENSE
package-lock.json Add ComposableObservableStore for subscription management 2018-04-13 10:20:44 -04:00
package.json Add ComposableObservableStore for subscription management 2018-04-13 10:20:44 -04:00
README.md
USER_AGREEMENT.md
yarn.lock

MetaMask Browser Extension

Build Status Coverage Status Greenkeeper badge Stories in Ready

Support

If you're a user seeking support, here is our support site.

Developing Compatible Dapps

If you're a web dapp developer, we've got two types of guides for you:

New Dapp Developers

Current Dapp Developers

Building locally

  • Install Node.js version 6.3.1 or later.
  • Install local dependencies with npm install.
  • Install gulp globally with npm install -g gulp-cli.
  • Build the project to the ./dist/ folder with gulp build.
  • Optionally, to rebuild on file changes, run gulp dev.
  • To package .zip files for distribution, run gulp zip, or run the full build & zip with gulp dist.

Uncompressed builds can be found in /dist, compressed builds can be found in /builds once they're built.

Running Tests

Requires mocha installed. Run npm install -g mocha.

Then just run npm test.

You can also test with a continuously watching process, via npm run watch.

You can run the linter by itself with gulp lint.

Architecture

Architecture Diagram

Development

npm install
npm start

Build for Publishing

npm run dist

Writing Browser Tests

To write tests that will be run in the browser using QUnit, add your test files to test/integration/lib.

Other Docs