Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 620 Bytes

README.md

File metadata and controls

30 lines (27 loc) · 620 Bytes

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