0.0.7 • Published 3 years ago

@dfuse/explorer v0.0.7

Weekly downloads
5
License
Apache-2.0
Repository
github
Last release
3 years ago

dexplore

common library for dfuse blockchain explorers

To develop locally, use yarn link:

  1. clone this repo
  2. yarn install
  3. yarn build
  4. Link the package to use in your explorer project
yarn link
  1. Link react, since we need to use the same react instance or react will break
cd node_modules/react
yarn link
  1. Link react-dom, since we need to use the same react-dom instance or react will break
cd ../../node_modules/react-dom
yarn link
  1. Use the linked packages in your explorer
cd ../../../YOUR_EXPLORER
yarn link @dfuse/explorer
yarn link react
yarn link react-dom