deno

프로그램개발/HTML5 2020. 6. 18. 20:17

node.js 대신 deno 공부중

 

 

https://deno.land/

 

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
        }
    ]
}

 

Posted by 아기곰푸우
,