일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 건강관리
- 욕실인테리어
- jQuery
- 강화유리샤워부스
- 제이쿼리메뉴
- 딥러닝
- 샤워부스
- 제이쿼리
- Menu
- 스트레스관리
- 생성형-ai
- 미래기술
- 디지털마케팅
- 네이버검색
- 온라인마케팅
- 머신러닝
- 샤워부스구매
- 젠스파크
- 검색등록
- 자연어처리
- 사이트등록
- 강화학습
- 멀티모달-ai
- 샤워부스추천
- 자율주행
- 네이버검색등록
- 스톤모두
- 인공지능
- 샤워부스설치
- ai-기술
Archives
- Today
- Total
커피찬우유의 영화 다방
VScode ftp-simple 추천 본문
반응형
비쥬얼스튜디오 코드 ftp-simple 추천
git - https://github.com/humy2833/FTP-Simple
- name - string - Display name.
- host - string - server domain or ip.
- port - number - (option) port (Default: : 21)
- type - string - (option) ftp type. 'ftp' or 'sftp' (Default: : 'ftp'). If 'ftp' does not work, try 'ftp2'.
- username - string - username for authentication.
- password - string - (option) password for authentication.
- privateKey - string - (option) sftp only. String that contains a private key for either key-based or hostbased user authentication (OpenSSH format) Default: none
- passphrase - string - (option) Use sftp 'privateKey' only. For an encrypted private key, this is the passphrase used to decrypt it. Default: none
- agent - string - (option) sftp only. Path to ssh-agent's UNIX socket for ssh-agent-based user authentication. Important:Windows users: set to 'pageant' for authenticating with Pageant or (actual) path to a cygwin "UNIX socket." Default: none
- agentForward - boolean - (option) sftp only. Set to
true
to use OpenSSH agent forwarding (auth-agent@openssh.com) for the life of the connection. agent must also be set to use this feature. Default: false - path - string - (option) remote root path. Default: '/'
- autosave - boolean - (option) To determine whether the automatically uploaded when you open a file directly and modify and save. Default: true
- backup - string - (option) The local path you want to back up before file saving on the server.
- confirm - boolean - (option) Only save option. When you save the file, ask if you want to overwrite the file if it already exists.. Default: true
- project - object - (option) Only save option. Pre-specify local workspace path and server root path to save directly without selecting a path. Overwrite unconditionally.
- ignore - array - (option) Only 'Remote directory open to workspace' option. Path to be ignore. Use glog pattern. (Caution : server path (ex:
/home
) + ignore pattern (ex:/**/node_modules
) =>/home/**/node_modules
)
사용 예시
[ { "name": "my server1", "host": "127.0.0.1", "port": 21, "type": "ftp", "username": "id", "password": "pw", "path" : "/" }, { "name": "my server2", "host": "127.0.0.1", "port": 22, "type": "sftp", "username": "id", "password": "pw", "path" : "/", "autosave" : false }, { "name": "my server3", "host": "127.0.0.1", "port": 21, "type": "sftp", "username": "id", "password": "pw", "path" : "/home", "confirm" : false, "backup" : "C:/backup", "project" : { "c:/projects/project1" : "/home/user/project", "c:/projects/project2" : {"path":"/home/user/project2", "save":true} //When the "save" value is "true", save immediately without confirm }, "ignore" : ["/**/node_modules", "/**/*.class"] }, { "name": "my server4", "host": "127.0.0.1", "port": 22, "type": "sftp", "username": "id", "password": "x", "agent": "/run/user/1111/keyring/ssh", "path": "/", "autosave": true, "confirm": false }, .... ]
반응형
'개발' 카테고리의 다른 글
퍼블리셔 마크업 개발자에게 유용한 URL Bookmark 모음 (0) | 2019.03.12 |
---|---|
반응형 이미지 맵 - jQuery-rwdImageMaps (0) | 2019.03.11 |
Visual Studio Code settings.json 세팅 (0) | 2019.03.06 |
자바스크립트 이벤트 중지시키는 방법 (0) | 2019.03.06 |
제이쿼리 날짜에 따라 변하는 이미지 (1) | 2019.03.05 |
Comments