go>=1.8
node>=v6.9.0
npm>=3.10.10
The server is written in golang.
The golang server returns the static content from dist/ and proxies a subset of the skycoin node API.
As an Angular CLI projects, Node 6.9.0 or higher, together with NPM 3 are required.
After cloning the project, you will need to run npm install to pull in all javascript dependencies.
The angular code is compiled to the dist/ folder.
git clone github.com/skycoin/skycoin
cd skycoin
./run.shmake runThis must be run from the same directory that contains dist/.
The explorer assumes that the skycoin node is running on localhost:6420 by default.
To point it at a different address:
SKYCOIN_ADDR=http://127.0.0.1:3333 ./explorerexplorer can be run in api-only mode, which will expose the JSON API but not serve the static content from dist/:
make run-apiHTML documentation:
http://explorer.skycoin.net/api.html
JSON formatted API docs:
http://explorer.skycoin.net/api/docs
After changing the angular frontend, it should be compiled and committed to the repo.
This is to simplify deployment of the application, and allow users to run it themselves without
installing node and npm then running npm install and npm run build.
make build-ngexplorer.go should be formatted with goimports. You can do this with:
make formatYou must have goimports installed (use make install-linters).
Install prerequisites:
make install-lintersRun linters:
make lintCompile explorer.go to a binary:
make build-goAllow it to bind to port 80 using setcap:
sudo setcap 'cap_net_bind_service=+ep' ./explorerRun it on port 80:
EXPLORER_HOST=:80 ./explorer