solana-web3.js
Solana JavaScript SDK
파일 탐색기
- 0_bug.md
- 1_feature.md
- config.yml
- action.yml
- action.yml
- action.yml
- action.yml
- autolock-inactive-threads.yml
- commit-lint.yml
- label-actions.yml
- manage-stale-threads.yml
- preview-gh-pages.yml
- publish-gh-pages.yml
- publish-legacy-package.yml
- pull-requests.yml
- PULL_REQUEST_TEMPLATE.md
- typescript-publish.yml
- legacy-token-test-mint-account.json
- legacy-token-test-token-account.json
- legacy-token-test-token-owner.json
- get-latest-validator-release-version.sh
- setup-test-validator.sh
- start-shared-test-validator.sh
- typegen.sh
- fetch-impl.ts
- fetch-impl.ts
- account-keys.ts
- compiled-keys.ts
- index.ts
- legacy.ts
- v0.ts
- versioned.ts
- index.ts
- state.ts
- compute-budget.ts
- ed25519.ts
- index.ts
- secp256k1.ts
- stake.ts
- system.ts
- vote.ts
- constants.ts
- expiry-custom-errors.ts
- index.ts
- legacy.ts
- message.ts
- versioned.ts
- assert.ts
- bigint.ts
- borsh-schema.ts
- cluster.ts
- ed25519.ts
- guarded-array-utils.ts
- index.ts
- makeWebsocketUrl.ts
- promise-timeout.ts
- secp256k1.ts
- send-and-confirm-raw-transaction.ts
- send-and-confirm-transaction.ts
- shortvec-encoding.ts
- sleep.ts
- to-buffer.ts
- account-data.ts
- account.ts
- blockhash.ts
- bpf-loader-deprecated.ts
- bpf-loader.ts
- connection.ts
- epoch-schedule.ts
- errors.ts
- fee-calculator.ts
- fetch-impl.ts
- index.ts
- instruction.ts
- keypair.ts
- layout.ts
- loader.ts
- nonce-account.ts
- publickey.ts
- rpc-websocket.ts
- sysvar.ts
- timing.ts
- validator-info.ts
- vote-account.ts
- lib.rs
- .gitignore
- build.sh
- Cargo.toml
- solana_sbf_rust_noop.so
- account-keys.test.ts
- compiled-keys.test.ts
- legacy.test.ts
- v0.test.ts
- versioned.test.ts
- rpc-http.ts
- rpc-websocket.ts
- address-lookup-table.test.ts
- compute-budget.test.ts
- ed25519.test.ts
- secp256k1.test.ts
- stake.test.ts
- system.test.ts
- vote.test.ts
- message.test.ts
- .gitignore
- account.test.ts
- cluster.test.ts
- connection-subscriptions.test.ts
- connection.test.ts
- epoch-schedule.test.ts
- guarded-array-utils.test.ts
- keypair.test.ts
- makeWebsocketUrl.test.ts
- nonce.test.ts
- publickey.test.ts
- shortvec-encoding.test.ts
- transaction-payer.test.ts
- transaction.test.ts
- url.ts
- validator-info.test.ts
- websocket.test.ts
- .eslintignore
- .eslintrc.js
- .gitignore
- .npmrc
- .prettierignore
- .prettierrc.yaml
- .releaserc.json
- .sgcrc
- babel.config.json
- commitlint.config.js
- commitlint.sh
- LICENSE
- package.json
- pnpm-lock.yaml
- README.md
- rollup.config.mjs
- rollup.config.types.mjs
- SECURITY.md
- tsconfig.d.json
- tsconfig.json
- typedoc.json
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
npm install
설명 보기 ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
설명 보기 ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm test
설명 보기 ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
