Qoderian

(★ 24)

No description available.

File Explorer

  • .env.local.example
  • .gitignore
  • .node-version
  • .npmrc
  • ARCHITECTURE.md
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • esbuild.config.mjs
  • eslint.config.mjs
  • jest.config.js
  • LICENSE
  • manifest.json
  • NOTICE
  • package-lock.json
  • package.json
  • README.md
  • SECURITY.md
  • tsconfig.jest.json
  • tsconfig.json
  • versions.json

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

🔍

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:

🔍

git push

View Details ▼

Push commits to a remote repository.

git push

Send local changes in the current branch to its default remote counterpart:

git push {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart:

git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:

🔍

node

View Details ▼

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 ci

View Details ▼

Clean install of `npm` project dependencies for automated environments.
Installs packages based on `package-lock.json` or `npm-shrinkwrap.json`.

npm ci

Install project dependencies from `package-lock.json` or `npm-shrinkwrap.json`:

npm ci --omit {{dev|optional|peer}}

Install project dependencies but skip the specified dependency type:

npm ci --ignore-scripts

Install project dependencies without running any pre-/post-scripts defined in `package.json`:

🔍

npm root

View Details ▼

Display path to `node_modules` directory.

npm root

Display path to the local `node_modules` directory:

npm root {{[-g|--global]}}

Display path to the global `node_modules` directory:

🔍

npm run

View Details ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

npm version

View Details ▼

Bump a node package version.

npm version

Display version:

npm version minor

Bump the minor version:

npm version {{version}}

Set a specific version:

// repository documentation