bee-dashboard

(★ 141)

An app which helps users to setup their Bee node and do actions like cash out cheques

File Explorer

  • .babelrc.js
  • .depcheckrc.json
  • .dockerignore
  • .env.development
  • .gitattributes
  • .gitignore
  • .nvmrc
  • .prettierignore
  • .prettierrc
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • CODEOWNERS
  • commitlint.config.cjs
  • desktop.mjs
  • docker-compose.yml
  • Dockerfile
  • eslint-compat.cjs
  • eslint.config.mjs
  • index.html
  • jest.config.cjs
  • LICENSE
  • package.json
  • pnpm-lock.yaml
  • pnpm-workspace.yaml
  • README.md
  • serve.js
  • tsconfig.json
  • tsconfig.lib.json
  • vite.config.mts

# Use via CDN

jsDelivr

jsDelivr 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.

🔍

docker build

View Details ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker compose up

View Details ▼

Start and run Docker services defined in a Compose file.

docker compose up

Start all services defined in the docker-compose file:

docker compose up {{[-d|--detach]}}

Start services in the background (detached mode):

docker compose up --build

Start services and rebuild images before starting:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

git clone

View Details ▼

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:

🔍

pnpm

View Details ▼

Fast, disk space efficient package manager for Node.js.
Manage Node.js projects and their module dependencies.

pnpm init

Create a `package.json` file:

pnpm {{[i|install]}}

Download all the packages listed as dependencies in `package.json`:

pnpm add {{module_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

# Project Badges

  • No description Visit
  • standard-readme compliant standard-readme compliant Visit
  • js-standard-style js-standard-style Visit
  • FOSSA Status FOSSA Status Visit
  • No description
  • No description
// repository documentation