node-cryptonote-pool
Mining pool for CryptoNote based coins such as Bytecoin and Monero
File Explorer
- api.js
- apiInterfaces.js
- blockUnlocker.js
- cli.js
- configReader.js
- exceptionWriter.js
- logger.js
- paymentProcessor.js
- pool.js
- utils.js
- getting_started.html
- home.html
- payments.html
- pool_blocks.html
- support.html
- admin.html
- config.js
- custom.css
- custom.js
- index.html
- .gitignore
- config_example.json
- init.js
- LICENSE
- package.json
- README.md
- redisBlocksUpgrade.js
# 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:
nvm
View Details ▼
nvm
Install, uninstall, or switch between Node.js versions under the fish shell.
Supports version numbers like "12.8" or "v16.13.1", and labels like "stable", "system", etc.
nvm install {{node_version}}
Install a specific version of Node.js:
nvm install {{node_version}}
Install a specific version of Node.js:
nvm use {{node_version}}
Use a specific version of Node.js in the current shell:
then
View Details ▼
then
This shell keyword is used in combination with `if` and `elif` to separate branches and branch conditions.
tldr if
View documentation for `if` command:
apt-get
View Details ▼
apt-get
Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.
sudo apt-get update
Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):
sudo apt-get install {{package}}
Install a package, or update it to the latest available version:
sudo apt-get remove {{package}}
Remove a package:
