mist

(★ 7,422)

[DEPRECATED] Mist. 이더리움 네트워크에서 Ðapps를 탐색하고 사용하세요.

파일 탐색기

  • .babelrc
  • .codeclimate.yml
  • .eslintignore
  • .eslintrc.json
  • .gitignore
  • .gitmodules
  • .nvmrc
  • .prettierignore
  • .prettierrc
  • .travis.yml
  • appveyor.yml
  • AUTHORS
  • clientBinaries.json
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • customProtocols.js
  • gulpfile.js
  • LICENSE
  • main.js
  • meteor-dapp-wallet
  • MISTAPI.md
  • package.json
  • README.md
  • release.js
  • Wallet-README.txt
  • yarn.lock

# 설치 가이드

node
사전 준비물

설치 및 실행 절차

git submodule update --init --recursive

깃 서브모듈을 초기화하고 업데이트합니다.

yarn

프로젝트 의존성을 설치합니다.

yarn dev:meteor

개발용 메테오 서버를 실행합니다.

yarn dev:electron

개발용 일렉트론 애플리케이션을 실행합니다.

핵심 명령어

yarn

Yarn을 사용하여 프로젝트의 의존성을 설치합니다.

yarn dev:meteor

자동 리로드와 CSS 인젝션을 지원하는 메테오 개발 서버를 실행합니다.

yarn dev:electron

Mist 일렉트론 애플리케이션을 개발 모드로 실행합니다.

yarn build:mist

Mist 애플리케이션의 배포용 바이너리를 생성합니다.

yarn build:wallet

이더리움 월렛 배포용 바이너리를 생성합니다.

클라이언트 바이너리(geth 등)는 시작 시 설정에 따라 자동으로 확인 및 다운로드됩니다.

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

geth

설명 보기 ▼

go-ethereum 명령줄 인터페이스.
더 많은 정보: <https://geth.ethereum.org/docs/fundamentals/command-line-options>.

geth

메인 이더리움 네트워크에 연결하고 자동으로 전체 노드를 다운로드:

geth --testnet

Ropsten 테스트 네트워크에 연결:

geth account new

새로운 계정 생성:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

git submodule

설명 보기 ▼

Inspect, update, and manage submodules.

git submodule

View existing submodules and the checked-out commit for each one:

git submodule update --init --recursive

Install a repository's submodules (listed in `.gitmodules`):

git submodule add {{repository_url}}

Add a Git repository as a submodule of the current one:

🔍

yarn

설명 보기 ▼

JavaScript 및 Node.js 패키지 대체 관리자.
더 많은 정보: <https://yarnpkg.com/cli>.

yarn global add {{module_name}}

전역적으로 모듈 설치:

yarn install

`package.json` 파일에 참조된 모든 의존성을 설치 ( `install`은 선택 사항입니다):

yarn add {{module_name}}@{{version}}

모듈을 설치하고 `package.json` 파일에 대한 의존성으로 저장 (개발 전용 의존성으로 추가하려면 `--dev` 추가):

🔍

apt-get

설명 보기 ▼

Debian 및 Ubuntu 패키지 관리 도구.
`apt-cache`를 사용하여 패키지를 검색하세요.
Ubuntu 16.04 이후 버전에서는 대화형 사용 시 `apt` 사용을 권장합니다.
더 많은 정보: <https://manned.org/apt-get.8>.

sudo apt-get update

사용 가능한 패키지 및 버전 목록 업데이트 (다른 `apt-get` 명령어 실행 전에 권장됨):

sudo apt-get install {{package}}

패키지 설치 또는 최신 버전으로 업데이트:

sudo apt-get remove {{package}}

패키지 제거:

# 프로젝트 배지

// repository documentation