node.js 대신 deno 공부중
Deno
Deno ships as a single executable with no dependencies. You can install it using the installers below, or download a release binary from the releases page. Build and install from source using Cargo $cargo install deno
deno.land
PowerShell (Windows):
iwr https://deno.land/x/install/install.ps1 -useb | iex
vscode
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Deno",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": ["run", "--inspect-brk", "-A", "${fileBasename}"],
"outputCapture": "std",
"port": 9229
}
]
}