vscode Remote FS

(RemoteFS에서 넘어옴)

1 개요[ | ]

vscode Remote FS
Remote File System for VS Code
json
Copy
{
  "remotefs.remote": {
    "dev": {
      "scheme": "sftp",
      "host": "host",
      "username": "username",
      "rootPath": "/path/to/somewhere"
    },
    "site": {
      "scheme": "ftp",
      "host": "host",
      "username": "username"
    },
    "projectX": {
      "scheme": "sftp",
      "host": "host",
      "username": "username",
      "privateKeyPath": "/Users/xx/.ssh/id_rsa",
      "rootPath": "/home/foo/some/projectx"
    }
  }
}
json
Copy
{
  "remotefs.remote": {
    "test": {
      "scheme": "ftp",
      "host": "host",
      "username": "username"
    },
    "projectX": {
      "scheme": "sftp",
      "host": "host",
      "username": "username",
      "privateKeyPath": "/Users/xx/.ssh/id_rsa",
      "rootPath": "/home/foo/some/projectx"
    }
  }
}

2 같이 보기[ | ]

3 참고[ | ]

  • 비주얼스튜디오 코드
    Sublime Text를 벤치마킹한 툴로 보이는데 청출어람 하고 있다라 판단됨. MS사의 도구들이 통상 무거웠던 것을 생각하면 VSC는 이상하다라 느껴질 정도로 가벼움. C언어 쪽은 상대적으로 약하지만 웹언어에서는 큰 무리 없이 사용이 가능한 것 같음. Git 도 함께 지원하고 있어 편 John Jeong