このページでは、FCL JS ライブラリのインストールについて説明いたします。 しかし、インストールに進む前に、まず前提条件を確認しておきましょう。
Prerequisite
- Node.js version v12.0.0 or higher.
FCL JS は Node.js の v12.0.0 以降のバージョンに依存します。現在インストールされているNode.jsのバージョンは、以下のコマンドで確認できます。
node --version
Node.js がシステムにインストールされていない場合は、Node.js Download にアクセスすることでダウンロードおよびインストールができます。
FCL JS をnpm もしくは yarn を使用してインストールします。
npm i -S @onflow/fcl
yarn add @onflow/fcl
Importing
ES6
import * as fcl from "@onflow/fcl";
Node.js
const fcl = require("@onflow/fcl");
Last updated on Nov 20, 2024 by Chase Fleming
翻訳元
Flow BlockchainのCadence version1.0ドキュメント (Installation)