誰かが私のubuntuシステムでeztzを起動して実行するためのnoobガイドを教えてもらえますか?次のエラーが発生します
1 回答
- 投票
npm i eztz
は機能しません.
代わりに、パッケージの依存関係としてeztzのgitリポジトリを追加できます.json
"dependencies": {
"eztz": "git://github.com/TezTech/eztz.git#0c6b93ffdd774f7ed3c528058f854deb0649a61c"
}
その後、npm i
またはyarn
を実行してパッケージをインストールします.
ライブラリを使用する場合は、インポートする必要があります
import { eztz } from 'eztz';
...またはrequireを使用します.
var { eztz } = require('eztz');
npm i eztz
wont work.
Instead you can add eztz's git repo as a dependency in your package.json
"dependencies": {
"eztz": "git://github.com/TezTech/eztz.git#0c6b93ffdd774f7ed3c528058f854deb0649a61c"
}
After that you just run npm i
or yarn
to install the package.
When you want to use the library you have to import it
import { eztz } from 'eztz';
...or use require.
var { eztz } = require('eztz');
eztz.rpc.getBalance( "tz1ZzQFmd6e2YTUrkggADWUj5c68wsynpkCZ").then(function(res){ ^
TypeError:未定義のプロパティ 'getBalance'を読み取れません