浏览器插件项目源码:https://github.com/MetaMask/metamask-extension
Building locally
- Install Node.js version 8.11.3 and npm version 6.1.0
- If you are using nvm (recommended) running
nvm use
will automatically choose the right node version for you. - Select npm 6.1.0:
npm install -g [email protected]
- If you are using nvm (recommended) running
- Install dependencies:
npm install
- Install gulp globally with
npm install -g gulp-cli
. - Build the project to the
./dist/
folder withgulp 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 withgulp dist
.
Uncompressed builds can be found in/dist
, compressed builds can be found in/builds
once they're built.