https://github.com/mwilber/nft-minting-website-example
Example website with NFT Minting Features
https://github.com/mwilber/nft-minting-website-example
javascript nft nft-store
Last synced: 9 months ago
JSON representation
Example website with NFT Minting Features
- Host: GitHub
- URL: https://github.com/mwilber/nft-minting-website-example
- Owner: mwilber
- Created: 2021-09-25T22:42:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-01T20:03:11.000Z (over 2 years ago)
- Last Synced: 2025-04-21T15:17:49.947Z (about 1 year ago)
- Topics: javascript, nft, nft-store
- Language: JavaScript
- Homepage: https://greenzeta.com/how-to-build-an-nft-website/
- Size: 814 KB
- Stars: 52
- Watchers: 1
- Forks: 39
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-zircon - NFT Minting Website
README
#  nft-minting-website-example
## ReExoBits
A complete NFT website with Minting and Gallery features. Based off of the ExoBits website: [ExoBitsNFT.com](https://exobitsnft.com/). This project accompanies the medium article ["How To Build An NFT Website"](#article)

## Table of contents
- [The Article](#article)
- [Setup](#setup)
- [Development](#development)
- [Deployment](#deployment)
- [React](#react)
## Article
This project accompanies ["How To Build An NFT Website"](https://greenzeta.com/how-to-build-an-nft-website/) on GreenZeta.com. The article explains everything you need to get started building an NFT website. Including: Contract deployment and interaction with a live contract using [Web3.js](https://github.com/ChainSafe/web3.js). Though this project stands by itself, it is recommended that you follow the full tutorial for a complete understanding.

## Setup
Clone this repo and enter the project directory:
```sh
$ git clone https://github.com/mwilber/nft-minting-website-example
$ cd nft-minting-website-example
```
Install dependencies:
```sh
$ npm install
```
## Development
Run the local webpack-dev-server with livereload and autocompile on [http://localhost:3000/](http://localhost:3000/)
```sh
$ npm start
```
## Deployment
Build the current application
```sh
$ npm run build
```
## React
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).