digma-vscode-plugin

(β˜… 22)

πŸ§‘β€πŸ’» Visual Studio Code extension for Digma

File Explorer

  • .eslintrc.js
  • .gitignore
  • .nvmrc
  • .prettierignore
  • .prettierrc
  • .stylelintignore
  • .stylelintrc
  • .vscodeignore
  • after.png
  • before.png
  • CHANGELOG.md
  • digma.png
  • icon.png
  • LICENSE
  • package-lock.json
  • package.json
  • README.md
  • tsconfig.dev.json
  • tsconfig.eslint.json
  • tsconfig.json
  • workspace.xml

# 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

View Details β–Ό

Distributed version control system.
Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.

git init

Create an empty Git repository:

git clone {{https://example.com/repo.git}}

Clone a remote Git repository from the internet:

git status

View the status of the local repository:

πŸ”

npm install

View Details β–Ό

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

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

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

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

πŸ”

vsce

View Details β–Ό

Extension manager for Visual Studio Code.

vsce list {{publisher}}

List all the extensions created by a publisher:

vsce publish {{major|minor|patch}}

Publish an extension as major, minor, or patch version:

vsce unpublish {{extension_id}}

Unpublish an extension:

// repository documentation