node-open-mining-portal
A scalable all-in-one easy to setup cryptocurrency mining pool and portal written entirely in Node.js.
File Explorer
- 21coin.json
- 365coin.json
- 42.json
- alphacoin.json
- anoncoin.json
- applecoin.json
- arkenstone.json
- arkhash.json
- asiccoin.json
- auroracoin.json
- battlecoin.json
- benjamins.json
- betacoin.json
- bitcoin.json
- bitraam.json
- bitstar.json
- bluecoin.json
- bottlecaps.json
- bunnycoin.json
- bytecoin.json
- cachecoin.json
- casinocoin.json
- catcoin.json
- coino.json
- continuumcoin.json
- copperbars.json
- copperlark.json
- cryptogenicbullion.json
- cryptographicanomaly.json
- cryptometh.json
- darkcoin.json
- defcoin.json
- devcoin.json
- diamondcoin.json
- digibyte.json
- dogecoin.json
- earthcoin.json
- einsteinium.json
- elephantcoin.json
- emark.json
- emerald.json
- execoin.json
- ezcoin.json
- fastcoin.json
- fastcoinsha.json
- feathercoin.json
- fedoracoin.json
- fireflycoin.json
- flappycoin.json
- florincoin.json
- fluttercoin.json
- frankocoin.json
- freecoin.json
- freicoin.json
- galaxycoin.json
- galleon.json
- gamecoin.json
- giarcoin.json
- globalboost.json
- globalcoin.json
- globaldenomination.json
- globaltoken.json
- goldpressedlatinum.json
- grandcoin.json
- groestlcoin.json
- guarantcoin.json
- helixcoin.json
- hirocoin.json
- hobonickels.json
- infinitecoin.conf
- internetcoin.json
- ixcoin.json
- jennycoin.json
- joulecoin.json
- junkcoin.json
- kittehcoin.json
- klondikecoin.json
- krugercoin.json
- kumacoin.json
- litecoin.json
- lottocoin.json
- luckycoin.json
- maxcoin.json
- mazacoin.json
- memecoin.json
- microcoin.json
- mintcoin.json
- monacoin.json
- muniti.json
- myriadcoin.json
- neocoin.json
- netcoin.json
- noirbits.json
- octocoin.json
- onecoin.json
- opensourcecoin.json
- pawncoin.json
- peercoin.json
- phoenixcoin.json
- plncoin.json
- potcoin.json
- procoin.json
- quarkcoin.json
- radioactivecoin.json
- reddcoin.json
- ronpaulcoin.json
- rubycoin.json
- saffroncoin.json
- sayacoin.json
- sexcoin.json
- sha1coin.json
- skeincoin.json
- spartancoin.json
- spots.json
- stablecoin.json
- starcoin.json
- stashcoin.json
- stoopidcoin.json
- suncoin.json
- takcoin.json
- teacoin.json
- tekcoin.json
- terracoin.json
- tigercoin.json
- ultimatecoin.json
- ultracoin.json
- unobtanium.json
- velocitycoin.json
- vertcoin.json
- viacoin.json
- wearesatoshi.json
- wecoin.json
- whitecoin.json
- xencoin.json
- yacoin.json
- ybcoin.json
- zedcoin.json
- zetacoin.json
- zzcoin.json
- api.js
- apiBittrex.js
- apiCoinWarz.js
- apiCryptsy.js
- apiMintpal.js
- apiPoloniex.js
- cliListener.js
- logUtil.js
- mposCompatibility.js
- paymentProcessor.js
- poolWorker.js
- profitSwitch.js
- shareProcessor.js
- stats.js
- website.js
- workerapi.js
- litecoin_example.json
- blocknotify.c
- cli.js
- admin.html
- api.html
- getting_started.html
- home.html
- mining_key.html
- stats.html
- tbs.html
- workers.html
- admin.js
- favicon.png
- logo.svg
- main.js
- nvd3.css
- nvd3.js
- stats.js
- style.css
- index.html
- key.html
- .gitignore
- config_example.json
- init.js
- LICENSE
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bind
View Details ▼
bind
Bash builtin to manage bash hotkeys and variables.
bind {{-p|-P}}
List all bound commands and their hotkeys:
bind -q {{command}}
Query a command for its hotkey:
bind -x '"{{key_sequence}}":{{command}}'
Bind a key:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git pull
View Details ▼
git pull
Fetch branch from a remote repository and merge it to local repository.
git pull
Download changes from default remote repository and merge it:
git pull {{[-r|--rebase]}}
Download changes from default remote repository and use fast-forward:
git pull {{remote_name}}
Download changes from a specific remote repository:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm update
View Details ▼
npm update
Update packages in the current project.
npm {{[up|update]}}
Update all packages in the current project:
npm {{[up|update]}} {{package}}
Update a specific package in the current project:
npm {{[up|update]}} {{package}} {{[-g|--global]}}
Update a package globally:
