33 lines
899 B
Markdown
33 lines
899 B
Markdown
|
|
# Hardhat-Tailwind-React Ethers Starter Kit
|
|
Speedily develope your decentralized application with this starter kit for free!
|
|
|
|
Follow the steps below to download, install, and run this project.
|
|
|
|
## Dependencies
|
|
Install these prerequisites to follow along with the tutorial. See free video tutorial or a full explanation of each prerequisite.
|
|
- NPM: https://nodejs.org
|
|
- Hardhat: https://hardhat.org/
|
|
- EthersJs: https://ethers.org/
|
|
- Tailwind CSS: https://tailwindcss.com/
|
|
|
|
|
|
## Step 1. Clone the project
|
|
`git clone https://github.com/Daltonic/tailwind_ethers_starter_kit <PROJECT NAME>`
|
|
|
|
## Step 2. Install dependencies
|
|
```sh
|
|
$ cd <PROJECT NAME>
|
|
$ yarn install # or npm install
|
|
```
|
|
## Step 3. Start Hardhat Node
|
|
Open the terminal and run the command below.
|
|
```sh
|
|
$ yarn hardhat node
|
|
```
|
|
|
|
## Step 4. Run the Front End Application
|
|
`$ yarn start`
|
|
Visit this URL in your browser: http://localhost:3000
|
|
|