Configurando um ambiente Windows para desenvolvimento

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • winget-cli

    WinGet is the Windows Package Manager. This project includes a CLI (Command Line Interface), PowerShell modules, and a COM (Component Object Model) API (Application Programming Interface).

  • $SoftwareListFile = ".\software_list.txt" [string[]]$SoftwareList = Get-Content $SoftwareListFile <# .SYNOPSIS Checks if a Command is currently available on Powershell #> function Test-CommandExists { [CmdletBinding()] param ( [Parameter(Mandatory)] [string]$testCommand ) try { Get-Command $testCommand -ErrorAction Stop return $true } catch { return $false } } if (!(Test-CommandExists winget)) { Write-Host "Winget not found, unable to continue" Write-Host "Check on https://github.com/microsoft/winget-cli for instructions" return -1 } Write-Output "This script will attempt to install multiple softwares on your system" $DoInstall = Read-Host -Prompt "Are you sure you want to install? If so, type 'install' bellow." $WingetCommandParam = ($DoInstall -eq "install") ? $DoInstall : "search"; $SoftwareList | ForEach-Object -Process { &winget $WingetCommandParam -e --id $_ } Write-Output "Done!" if (!(Test-Path "${PSScriptRoot}\bootstrap.ps1" -PathType Leaf)) { return; } $DoBootstrap = Read-Host -Prompt "Type 'bootstrap' bellow if you want to run dotfiles' bootstrap as well" if ($DoBootstrap -eq "bootstrap") { . "${PSScriptRoot}\bootstrap.ps1" }

  • dotfiles

    Dotfiles for my Windows and Linux environments (by rodolphocastro)

  • View on GitHub

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
  • Scoop

    A command-line installer for Windows.

  • Puts Debuggerer

    Ruby library for improved puts debugging, automatically displaying bonus useful information such as source line number and source code.

  • $SoftwareListFile = ".\software_list.txt" [string[]]$SoftwareList = Get-Content $SoftwareListFile <# .SYNOPSIS Checks if a Command is currently available on Powershell #> function Test-CommandExists { [CmdletBinding()] param ( [Parameter(Mandatory)] [string]$testCommand ) try { Get-Command $testCommand -ErrorAction Stop return $true } catch { return $false } } if (!(Test-CommandExists winget)) { Write-Host "Winget not found, unable to continue" Write-Host "Check on https://github.com/microsoft/winget-cli for instructions" return -1 } Write-Output "This script will attempt to install multiple softwares on your system" $DoInstall = Read-Host -Prompt "Are you sure you want to install? If so, type 'install' bellow." $WingetCommandParam = ($DoInstall -eq "install") ? $DoInstall : "search"; $SoftwareList | ForEach-Object -Process { &winget $WingetCommandParam -e --id $_ } Write-Output "Done!" if (!(Test-Path "${PSScriptRoot}\bootstrap.ps1" -PathType Leaf)) { return; } $DoBootstrap = Read-Host -Prompt "Type 'bootstrap' bellow if you want to run dotfiles' bootstrap as well" if ($DoBootstrap -eq "bootstrap") { . "${PSScriptRoot}\bootstrap.ps1" }

  • Chocolatey

    Chocolatey - the package manager for Windows

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts