markdown 有用的工具
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 有用的工具相关的知识,希望对你有一定的参考价值。
# Chocolatey
[Chocolatey](https://chocolatey.org/) can be used to install most of the items below, and is well worth checking out.
Browse the [Chocoloatey Gallery](https://chocolatey.org/packages), or install [ChocolateyGUI](https://chocolatey.org/packages/ChocolateyGUI).
## Export / Import Chocolatey Packages
Use this PowerShell script to export your Chocolatey packages:
```powershell
# Put this in Export-Chocolatey.ps1 file and run it:
# Export-Chocolatey.ps1 > packages.config
Write-Output "<?xml version=`"1.0`" encoding=`"utf-8`"?>"
Write-Output "<packages>"
choco list -lo -r -y | % { " <package id=`"$($_.SubString(0, $_.IndexOf("|")))`" version=`"$($_.SubString($_.IndexOf("|") + 1))`" />" }
Write-Output "</packages>"
```
You could then install the exported `packages.config` file using:
```bash
choco install packages.config -y
```
# Java
Install [Java 8 JRE](https://java.com/en/download/), [OracleJDK](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) or [OpenJDK](http://openjdk.java.net/) as required.
If using [Chocolatey](https://chocolatey.org/) you can install the [Zulu OpenJDK](https://zulu.org/download/) with `choco install zulu8`.
# IDEs
* [IntelliJ Toolbox](https://www.jetbrains.com/toolbox/app/), with plugins:
* Lombok
* Azure Toolkit
* [VS Code](https://code.visualstudio.com/), plus useful extensions:
* Azure CLI Tools
* Azure Pipelines (YAML editor)
* Azure Resource Manager Tools (ARM templates)
* markdownlint
* PowerShell (Language support)
* Rainbow Brackets (bracket highlighting)
* Rainbow CSV (SCV file support)
* REST Client (Issue HTTP requests)
* XML Tools
* [Open Source SOAP UI](https://www.soapui.org/downloads/soapui.html)
* [SOAP UI PRO Trial available](https://www.soapui.org/downloads/download-soapui-pro-trial.html)
* [Visual Studio 2017](https://azure.microsoft.com/en-gb/downloads/)
* [Microsoft Threat Modeling Tool 2016](https://www.microsoft.com/en-us/download/details.aspx?id=49168)
* [SQL Server Management Studio](https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017)
# Azure PowerShell & CLI
* [Azure PowerShell](/Azure-DevOps/Azure-PowerShell-Tips)
* [Azure CLI](/Azure-DevOps/Azure-CLI-Tips)
# Azure Tooling
* [Service Bus Explorer](https://github.com/paolosalvatori/ServiceBusExplorer) - currently: 4.0.110, released on 5 July 2018
* [Others](https://azure.microsoft.com/en-gb/downloads/) include:
* [Storage Explorer](https://azure.microsoft.com/en-us/features/storage-explorer/)
* Storage Emulator
# Git
* [Git for Windows](https://github.com/git-for-windows/git/releases) - currently: 2.19.0.rc1.windows.1
* [Git Credential Manager for Windows](https://github.com/Microsoft/Git-Credential-Manager-for-Windows)
# Horizon
* [Horizon client for work access](https://my.vmware.com/web/vmware/details?productId=578&downloadGroup=CART19FQ3_WIN_490)
# Various Useful Tools
* [Postman](https://www.getpostman.com/)
* Slack Desktop Client
* [Putty](https://www.putty.org/)
* [7-zip](https://www.7-zip.org/)
* [Paint.NET](https://www.getpaint.net/index.html)
* [Foxit PDF Reader](https://www.foxitsoftware.com/downloads/)
* [cmder Shell](http://cmder.net/)
* [SDKMAN](https://sdkman.io/)
* [Chocolatey](https://chocolatey.org/)
See also [cli-improved](https://remysharp.com/2018/08/23/cli-improved) for other newish CLI tools.
以上是关于markdown 有用的工具的主要内容,如果未能解决你的问题,请参考以下文章