Three commands to get you creating frontend applications connected to DFINITY canisters
git clone https://github.com/taylorham/cra-template-dfx.git
npm init react-app my-app --template file:./cra-template-dfx
Or if you prefer yarn:
yarn create react-app my-app --template file:./cra-template-dfx
Be sure to replace my-app
with your app name and ensure the relative path to your newly cloned cra-template-dfx
directory is correct.
cd my-app && npm start
This spins up your dfx
canister in the background and runs your React app with webpack-dev-server.
🎉 Special thanks to Mio Quispe for their work on
create-dfinity-app
as inspiration and groundwork!