Using Create Eth App
Installationβ
Youβll need to have Node 14 or later version on your local development machine (but itβs not required on the server). You can use nvm (macOS/Linux) or nvm-windows to switch Node versions between different projects.
You'll also need Yarn on your local development machine. This is because Create Eth App relies on Yarn Workspaces, a feature not supported by Npm.
To quick start development with useDapp run:
yarn create eth-app my-eth-app
It creates folder my-eth-app and inside you have everything created to start.
my-eth-app
βββ README.md
βββ node_modules
βββ package.json
βββ .gitignore
βββ packages
βββ contracts
β βββ README.json
β βββ package.json
β βββ src
β βββ abis
β β βββ erc20.json
β β βββ ownable.json
β βββ addresses.js
β βββ index.js
βββ react-app
β βββ README.md
β βββ package.json
β βββ node_modules
β βββ public
β β βββ favicon.ico
β β βββ index.html
β β βββ manifest.json
β βββ src
β βββ App.css
β βββ App.js
β βββ App.test.js
β βββ ethereumLogo.svg
β βββ index.css
β βββ index.js
β βββ serviceWorker.js
β βββ setupTests.js
βββ subgraph
βββ README.md
βββ abis
β βββ erc20.json
βββ package.json
βββ schema.graphql
βββ src
β βββ mappings
β βββ tokens.ts
β βββ transfers.ts
βββ subgraph.yaml
Startβ
Just run:
yarn react-app:start
After that the app starts locally, open http://localhost:3000/ to view it in the browser.
Templatesβ
Create Eth App comes with a host of decentralized finance templates pre-filled with contract ABIs, addresses and subgraphs. Go to the templates folder, select any framework from the list and see what templates are available.
You can pass the name of the template as the value for the --template
command-line argument.
yarn create eth-app my-eth-app --template compound
Philosophyβ
Minimalistic by design: You are one command away from creating a new Ethereum-powered React app. No intermediary installs, scripts or shims.
End-to-End: Create Eth App provides you everything that you need to build and maintain an Ethereum-powered React app at scale, by bringing Yarn Workspaces, Create React App and The Graph under one roof
Aimed at Experience Architects: As Kames CG argues in Ethereum Growth's Problem, the Ethereum ecosystem is in a much greater need for top-notch product creators, not smart contract developers. Create Eth App does not enable a smart contract development environment, expecting you to import your own ABIs or build on top of an established protocol like Maker, Compound or Sablier
Not Reinventing The Wheel: Under the hood, you use Create React App, one of the most popular and battle-tested frontend development environments.
What's includedβ
Your environment will have everything you need to build a modern Ethereum-powered single-page React app:
Smooth project management via Yarn Workspaces
Everything included with Create React App: React, JSX, ES6, TypeScript and Flow syntax support
Template subgraph that indexes the events emitted by an ERC-20 contract
Minimalist structure for managing the smart contract ABIs and addresses
Hassle-free updates for the above tools with a single dependency
Prosβ
Create Eth App is a great fit for:
- Learning how to write Ethereum-powered apps in a comfortable and feature-rich development environment.
- Starting new Ethereum-powered single-page React applications without wasting time on copy-pasting boilerplates
- Creating examples with React for your Ethereum-related libraries and components.
Source codeβ
Source code is available on Github.