blockfrost-haskell

(★ 29)

Haskell SDK for Blockfrost.io

파일 탐색기

  • .gitignore
  • .stylish-haskell.yaml
  • cabal.project
  • cabal.project.local.ci
  • ci.dhall
  • ci.sh
  • default.nix
  • fmt.sh
  • LICENSE
  • README.md
  • shell.nix

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

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

설명 보기 ▼

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 --run "{{command}} {{argument1 argument2 ...}}"

nix3 셸에 대한 문서 보기:

nix-shell {{default.nix}}

Start with expression in `default.nix` in the current directory:

🔍

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에서 지정한 패키지가 사용 가능한 셸 시작:

// repository documentation