Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 21 hours 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 (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-01T20:03:11.000Z (8 months ago)
- Last Synced: 2024-05-27T22:30:11.125Z (6 months ago)
- Topics: javascript, nft, nft-store
- Language: JavaScript
- Homepage: https://greenzeta.com/how-to-build-an-nft-website/
- Size: 814 KB
- Stars: 50
- Watchers: 1
- Forks: 39
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-zircon - NFT Minting Website
README
# ![ReExoBits Logo](http://greenzeta.com/wp-content/uploads/2021/11/article_icon.png) nft-minting-website-example
## ReExoBitsA 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)
![ReExoBits ScreenShot](http://greenzeta.com/wp-content/uploads/2021/11/reexobits_preview.png)
## 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.![Article Header](http://greenzeta.com/wp-content/uploads/2021/11/article_header.png)
## 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).