Skip to content

ivanmartinvalle/vscode-settings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vscode-settings

VS Code settings for bootstrapping projects. This is mainly for my convenience. If it helps you out...great :)

dotnet

  • build and test tasks
  • Ignore dotnet files from the explorer
  • ReSharper Shortcuts. keybindings.json can be copied to Preference: Open Keyboard Shortcuts File

Extensions

code --install-extension ms-vscode.csharp
code --install-extension jmrog.vscode-nuget-package-manager

Node.js

Extensions

# ESLint: Create ESLint configuration
code --install-extension dbaeumer.vscode-eslint

Packages

npm i -D jest

AWS SAM

Installation

# install docker
pip install aws-sam-cli
pip install awscli

sam init -r nodejs8.10 -n my-app
cd my-app/hello_world
npm install

Debugging

# API debugging setup
# termimal A
cd my-app
sam local start-api -d 5858

# terminal B
curl 127.0.0.1:3000/hello
# non-API debugging setup
echo {} | sam local invoke -d 5858

Edit-debug cycle

  • attach debugger. see launch.json
  • debug
  • debugger will detach itself after each request is complete
  • repeat

All

code --install-extension eamodio.gitlens

About

VS Code settings for bootstrapping projects

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published