blockfrost-haskell
Haskell SDK for Blockfrost.io
파일 탐색기
- ci.yaml
- Accounts.hs
- Addresses.hs
- Assets.hs
- Blocks.hs
- Epochs.hs
- Governance.hs
- Ledger.hs
- Mempool.hs
- Metadata.hs
- Network.hs
- Pools.hs
- Scripts.hs
- Transactions.hs
- Utils.hs
- Cardano.hs
- Common.hs
- IPFS.hs
- NutLink.hs
- Accounts.hs
- Addresses.hs
- Assets.hs
- Blocks.hs
- Epochs.hs
- Genesis.hs
- Governance.hs
- Mempool.hs
- Metadata.hs
- Network.hs
- Pools.hs
- Scripts.hs
- Transactions.hs
- Utils.hs
- Ada.hs
- Address.hs
- Amount.hs
- AssetId.hs
- BlockHash.hs
- BlockIndex.hs
- CBOR.hs
- DatumHash.hs
- DRepId.hs
- Epoch.hs
- Opts.hs
- PolicyId.hs
- PoolId.hs
- POSIXMillis.hs
- Quantity.hs
- ScriptHash.hs
- Slot.hs
- TxHash.hs
- ValidationPurpose.hs
- ApiError.hs
- Cardano.hs
- Common.hs
- IPFS.hs
- NutLink.hs
- Shared.hs
- LensRules.hs
- Pagination.hs
- Sorting.hs
- Tag.hs
- UserAgent.hs
- API.hs
- Auth.hs
- Env.hs
- Lens.hs
- Types.hs
- Accounts.hs
- Addresses.hs
- Assets.hs
- Blocks.hs
- Epochs.hs
- Governance.hs
- Ledger.hs
- Metadata.hs
- Network.hs
- Pools.hs
- Scripts.hs
- Transactions.hs
- Utils.hs
- AmountSpec.hs
- APISpec.hs
- IPFS.hs
- NutLink.hs
- Spec.hs
- blockfrost-api.cabal
- CHANGELOG.md
- LICENSE
- README.md
- Setup.hs
- Main.hs
- Accounts.hs
- Addresses.hs
- Assets.hs
- Blocks.hs
- Epochs.hs
- Governance.hs
- Ledger.hs
- Mempool.hs
- Metadata.hs
- Network.hs
- Pools.hs
- Scripts.hs
- Transactions.hs
- Utils.hs
- IPFS.hs
- NutLink.hs
- Types.hs
- Client.hs
- SampleSpec.hs
- Spec.hs
- blockfrost-client.cabal
- CHANGELOG.md
- LICENSE
- README.md
- Setup.hs
- Auth.hs
- Core.hs
- Pagination.hs
- Sorting.hs
- Tag.hs
- UserAgent.hs
- blockfrost-client-core.cabal
- CHANGELOG.md
- LICENSE
- README.md
- Setup.hs
- Ada.hs
- Block.hs
- Config.hs
- POSIXTime.hs
- Shared.hs
- Pretty.hs
- blockfrost-pretty.cabal
- CHANGELOG.md
- LICENSE
- README.md
- Setup.hs
- sources.json
- sources.nix
- .gitignore
- .stylish-haskell.yaml
- cabal.project
- cabal.project.local.ci
- ci.dhall
- ci.sh
- default.nix
- fmt.sh
- LICENSE
- README.md
- shell.nix
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cabal
설명 보기 ▼
cabal
Haskell 패키지 인프라 (Cabal)에 대한 명령어 라인 인터페이스.
Hackage 패키지 저장소에서 Haskell 프로젝트 및 Cabal패키지 관리.
더 많은 정보: <https://cabal.readthedocs.io/en/latest/getting-started.html>.
cabal list {{search_string}}
Hackage에서 패키지 검색 및 리스트:
cabal info {{package}}
패키지에 대한 정보 출력:
cabal install {{package}}
패키지 다운로드 및 설치:
git clone
설명 보기 ▼
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:
nix-shell
설명 보기 ▼
nix-shell
`nix-shell`은 같은 이름의 여러 명령을 참조할 수 있습니다.
nix-shell
기존 셸에 대한 문서를 참조하세요:
nix-shell --run "{{command}} {{argument1 argument2 ...}}"
nix3 셸에 대한 문서 보기:
nix-shell {{default.nix}}
Start with expression in `default.nix` in the current directory:
nix
설명 보기 ▼
nix
패키지 관리를 신뢰성 있고, 재현 가능하며, 선언적으로 만드는 강력한 패키지 관리자.
`build`, `develop`, `flake`, `registry`, `profile`, `search`, `repl`, `store`, `edit`, `why-depends` 등의 일부 하위 명령에는 자체 사용 설명서가 있습니다.
관련 항목: `nix classic`.
더 많은 정보: <https://nix.dev/manual/nix/stable/command-ref/new-cli/nix>.
mkdir {{[-p|--parents]}} ~/.config/nix; echo 'experimental-features = nix-command flakes' > ~/.config/nix/nix.conf
`nix` 명령 활성화:
nix search nixpkgs {{search_term}}
nixpkgs에서 이름이나 설명으로 패키지 검색:
nix shell {{nixpkgs#pkg1 nixpkgs#pkg2 nixpkgs#pkg3 ...}}
nixpkgs에서 지정한 패키지가 사용 가능한 셸 시작:
