This is a countdown page for the mining reward halving that occurs every four years on Nervos CKB Layer 1 blockchain.
You can view a live version of this site at NervosHalving.com.
These instructions describe how to develop, build, and deploy the code base for NervosHalving.com.
If you don't need to develop and just want to view the live version, visit NervosHalving.com.
- Node.js (LTS v18+)
- TypeScript (v4.9+)
- React (v18+ via CRA v5+)
- SASS (v1.58+)
- Tailwind (v3.2+)
The following commands will run a local development server on port 3000
.
git clone --depth=1 https://github.com/jordanmack/nervos-halving-countdown.git
cd nervos-halving-countdown
npm i
npm start
The compiled version of this code is completely static and can be hosted on a basic web server. No backend daemons or processes are needed.
The following commands will build the production-ready files for deployment. After building, copy all files from the build
folder to the root of your web server.
git clone --depth=1 https://github.com/jordanmack/nervos-halving-countdown.git
cd nervos-halving-countdown
npm i
npm run build