Skip to content

Latest commit

 

History

History
42 lines (21 loc) · 1.09 KB

README.md

File metadata and controls

42 lines (21 loc) · 1.09 KB

NEM Blockchain Explorer (Node.js) !!! For The TESTNET !!!

The project is a blockchian explorer project which is built on NEM (https://www.nem.io).

What components are required

AngularJS, Bootstrap, MongoDB, Node.js

How to deploy the project

The following must be done before you build the project:

  1. install the Node.js on your machine.

  2. NIS is started and blocks loading is finished (please make sure that you are running a TESTNET Node).

  3. install MongoDB and start it (it's better to set an account and password).

Let's build the project:

  1. install bebel (for the ES6)
npm install babel-cli -g
  1. locate at the project folder and install the needed dependencies
npm install
  1. you can make some modifications in the config file (app/config/config.js)

port: 8081, //app port

mongodb: 'mongodb://localhost/explorer', //MongoDB uri

nisInitStartBlock: 0 //default 0

  1. start the application
npm start
  1. then visit http://127.0.0.1:8081, you should wait for the block loading when the first time run the application.