嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
electerm源代码
Linux连接工具,开源免费软件,ssh,sftp功能齐全
.
├── electerm-1.18.0
│ ├── LICENSE
│ ├── README.md
│ ├── bin
│ │ ├── app.js
│ │ ├── badges-output.js
│ │ ├── build-common.js
│ │ ├── build-linux.js
│ │ ├── build-mac-arm.js
│ │ ├── build-mac.js
│ │ ├── build-win.js
│ │ ├── build.js
│ │ ├── clean.js
│ │ ├── generate-version.js
│ │ ├── icon.js
│ │ ├── post-install.js
│ │ ├── pre-push
│ │ ├── preinstall.js
│ │ ├── prepare.js
│ │ └── release
│ ├── build
│ │ ├── common.js
│ │ ├── copy.js
│ │ ├── dev-server.js
│ │ ├── plugins.js
│ │ ├── production.js
│ │ ├── pug.js
│ │ ├── rules.js
│ │ ├── style.js
│ │ └── webpack.config.js
│ ├── electron-builder.json
│ ├── npm
│ │ ├── electerm
│ │ ├── install.js
│ │ ├── postpublish.js
│ │ └── prepublish.js
│ ├── package-lock.json
│ ├── package.json
│ ├── src
│ │ ├── app
│ │ │ ├── app.js
│ │ │ ├── common
│ │ │ │ ├── config-default.js
│ │ │ │ ├── constants.js
│ │ │ │ ├── create-session-log-file-path.js
│ │ │ │ ├── default-setting.js
│ │ │ │ ├── default-user-name.js
│ │ │ │ ├── is-win-drive.js
│ │ │ │ ├── lookup.js
│ │ │ │ ├── pass-enc.js
│ │ │ │ ├── time.js
│ │ │ │ ├── uid.js
│ │ │ │ └── version-compare.js
│ │ │ ├── lib
│ │ │ │ ├── command-line.js
│ │ │ │ ├── enc.js
│ │ │ │ ├── font-list.js
│ │ │ │ ├── fs.js
│ │ │ │ ├── get-config.js
│ │ │ │ ├── get-port.js
│ │ │ │ ├── init-app.js
│ │ │ │ ├── init-server.js
│ │ │ │ ├── install-src.js
│ │ │ │ ├── ipc.js
│ │ │ │ ├── last-state.js
│ │ │ │ ├── locales.js
│ │ │ │ ├── menu.js
│ │ │ │ ├── nedb.js
│ │ │ │ ├── on-close.js
│ │ │ │ ├── serial-port.js
│ │ │ │ ├── shortcut.js
│ │ │ │ ├── ssh-config.js
│ │ │ │ ├── style.js
│ │ │ │ ├── tray.js
│ │ │ │ ├── user-config-controller.js
│ │ │ │ └── window-control.js
│ │ │ ├── preload
│ │ │ │ └── preload.js
│ │ │ ├── server
│ │ │ │ ├── child-process.js
│ │ │ │ ├── dispatch-center.js
│ │ │ │ ├── download-upgrade.js
│ │ │ │ ├── fetch.js
│ │ │ │ ├── fs.js
│ │ │ │ ├── remote-common.js
│ │ │ │ ├── server.js
│ │ │ │ ├── session-log.js
│ │ │ │ ├── session.js
│ │ │ │ ├── sftp-file.js
│ │ │ │ ├── socks.js
│ │ │ │ ├── ssh2-alg.js
│ │ │ │ ├── sync.js
│ │ │ │ ├── terminal-api.js
│ │ │ │ └── transfer.js
│ │ │ ├── upgrade
│ │ │ │ ├── db-defaults.js
│ │ │ │ ├── index.js
│ │ │ │ ├── init-nedb.js
│ │ │ │ ├── v1.3.0.js
│ │ │ │ ├── v1.3.9.js
│ │ │ │ ├── v1.5.13.js
│ │ │ │ ├── v1.7.0.js
│ │ │ │ └── version-upgrade.js
│ │ │ └── utils
│ │ │ ├── app-props.js
│ │ │ ├── constants.js
│ │ │ └── log.js
│ │ └── client
│ │ ├── common
│ │ │ ├── auto-complete-data-mapper.js
│ │ │ ├── class.js
│ │ │ ├── clipboard.js
│ │ │ ├── constants.js
│ │ │ ├── create-lang-edit-link.js
│ │ │ ├── create-title.js
│ │ │ ├── db.js
│ │ │ ├── diff.js
│ │ │ ├── download.js
│ │ │ ├── error-handler.js
│ │ │ ├── fetch-from-server.js
│ │ │ ├── fetch.js
│ │ │ ├── find-bookmark-group-id.js
│ │ │ ├── find-parent.js
│ │ │ ├── form-layout.js
│ │ │ ├── fs.js
│ │ │ ├── id-with-stamp.js
│ │ │ ├── index-sorter.js
│ │ │ ├── init-setting-item.js
│ │ │ ├── is-absolute-path.js
│ │ │ ├── is-ip.js
│ │ │ ├── is-valid-path.js
│ │ │ ├── key-control-pressed.js
│ │ │ ├── key-pressed.js
│ │ │ ├── key-shift-pressed.js
│ │ │ ├── merge-proxy.js
│ │ │ ├── mode2permission.js
│ │ │ ├── new-terminal.js
│ │ │ ├── parse-json-safe.js
│ │ │ ├── pass-enc.js
│ │ │ ├── resolve.js
│ │ │ ├── run-idle.js
│ │ │ ├── safe-name.js
│ │ │ ├── sftp.js
│ │ │ ├── terminal-theme.js
│ │ │ ├── test-connection.js
│ │ │ ├── time.js
│ │ │ ├── transfer.js
│ │ │ ├── ui-theme.js
│ │ │ ├── update-check.js
│ │ │ ├── upgrade.js
│ │ │ ├── wait.js
│ │ │ └── ws.js
│ │ ├── components
│ │ │ ├── bookmark-form
│ │ │ │ ├── bookmark-form.styl
│ │ │ │ ├── bookmark-group-tree-format.js
│ │ │ │ ├── encodes.js
│ │ │ │ ├── index.jsx
│ │ │ │ ├── local-form-ui.jsx
│ │ │ │ ├── local-form.jsx
│ │ │ │ ├── quick-command-list.jsx
│ │ │ │ ├── quick-command.jsx
│ │ │ │ ├── serial-form-ui.jsx
│ │ │ │ ├── serial-form.jsx
│ │ │ │ ├── ssh-form-ui.jsx
│ │ │ │ ├── ssh-form.jsx
│ │ │ │ ├── use-form-funcs.jsx
│ │ │ │ ├── use-quick-commands.jsx
│ │ │ │ ├── use-submit.jsx
│ │ │ │ └── use-ui.jsx
│ │ │ ├── common
│ │ │ │ ├── animate-text.jsx
│ │ │ │ ├── animate-text.styl
│ │ │ │ ├── context-menu.jsx
│ │ │ │ ├── context-menu.styl
│ │ │ │ ├── external-link.jsx
│ │ │ │ ├── highlight.js
│ │ │ │ ├── highlight.styl
│ │ │ │ ├── input-auto-focus.jsx
│ │ │ │ ├── react-subx.jsx
│ │ │ │ ├── resize-wrap.jsx
│ │ │ │ ├── resize-wrap.styl
│ │ │ │ ├── search.jsx
│ │ │ │ └── show-item.jsx
│ │ │ ├── main
│ │ │ │ ├── css-overwrite.jsx
│ │ │ │ ├── error-wrapper.jsx
│ │ │ │ ├── index.jsx
│ │ │ │ ├── main.jsx
│ │ │ │ ├── system-menu.jsx
│ │ │ │ ├── system-menu.styl
│ │ │ │ ├── term-fullscreen-control.jsx
│ │ │ │ ├── term-fullscreen.styl
│ │ │ │ ├── ui-theme.jsx
│ │ │ │ ├── upgrade.jsx
│ │ │ │ ├── upgrade.styl
│ │ │ │ └── wrapper.styl
│ │ │ ├── quick-commands
│ │ │ │ ├── qm.styl
│ │ │ │ ├── quick-command-item.jsx
│ │ │ │ ├── quick-command-transport-mod.jsx
│ │ │ │ ├── quick-command-transport.jsx
│ │ │ │ ├── quick-commands-form.jsx
│ │ │ │ ├── quick-commands-list.jsx
│ │ │ │ └── quick-commands-select.jsx
│ │ │ ├── session
│ │ │ │ ├── index.jsx
│ │ │ │ └── session.styl
│ │ │ ├── session-control
│ │ │ │ └── index.jsx
│ │ │ ├── setting-panel
│ │ │ │ ├── bookmark-transport.jsx
│ │ │ │ ├── col.jsx
│ │ │ │ ├── list.jsx
│ │ │ │ ├── list.styl
│ │ │ │ ├── on-tree-drop.js
│ │ │ │ ├── setting-modal.jsx
│ │ │ │ ├── setting-wrap.jsx
│ │ │ │ ├── setting-wrap.styl
│ │ │ │ ├── setting.jsx
│ │ │ │ ├── setting.styl
│ │ │ │ ├── start-session-select.jsx
│ │ │ │ ├── tree-list.jsx
│ │ │ │ └── tree-list.styl
│ │ │ ├── setting-sync
│ │ │ │ ├── setting-sync-form.jsx
│ │ │ │ ├── setting-sync.jsx
│ │ │ │ └── sync.styl
│ │ │ ├── sftp
│ │ │ │ ├── confirm-modal.jsx
│ │ │ │ ├── file-icon.jsx
│ │ │ │ ├── file-item.jsx
│ │ │ │ ├── file-mode-modal.jsx
│ │ │ │ ├── file-props-modal.jsx
│ │ │ │ ├── file-read.js
│ │ │ │ ├── list-table-ui.jsx
│ │ │ │ ├── owner-list.js
│ │ │ │ ├── paged-list.jsx
│ │ │ │ ├── permission-render.jsx
│ │ │ │ ├── sftp-entry.jsx
│ │ │ │ ├── sftp.styl
│ │ │ │ ├── transfer-conflict.jsx
│ │ │ │ ├── transfer-speed-format.js
│ │ │ │ ├── transfer-tag.jsx
│ │ │ │ ├── transfer-tag.styl
│ │ │ │ ├── transfer.styl
│ │ │ │ ├── transport-action.jsx
│ │ │ │ ├── transport-entry.jsx
│ │ │ │ ├── transport-types.js
│ │ │ │ ├── transport-ui.jsx
│ │ │ │ ├── transports-action.jsx
│ │ │ │ ├── transports-ui.jsx
│ │ │ │ └── zip.js
│ │ │ ├── sidebar
│ │ │ │ ├── bookmark-select.jsx
│ │ │ │ ├── bookmark.jsx
│ │ │ │ ├── history.jsx
│ │ │ │ ├── index.jsx
│ │ │ │ ├── info-modal.jsx
│ │ │ │ ├── info.styl
│ │ │ │ ├── log-view.jsx
│ │ │ │ ├── menu-btn.jsx
│ │ │ │ ├── sidebar.styl
│ │ │ │ ├── transfer-history-modal.jsx
│ │ │ │ └── transfer-history.styl
│ │ │ ├── tabs
│ │ │ │ ├── index.jsx
│ │ │ │ ├── tab.jsx
│ │ │ │ ├── tabs.styl
│ │ │ │ └── window-control.jsx
│ │ │ ├── terminal
│ │ │ │ ├── attach-addon-custom.js
│ │ │ │ ├── batch-input.jsx
│ │ │ │ ├── index.jsx
│ │ │ │ ├── normal-buffer.jsx
│ │ │ │ ├── terminal-apis.js
│ │ │ │ ├── terminal-interactive.jsx
│ │ │ │ ├── terminal.styl
│ │ │ │ ├── xterm-zmodem.js
│ │ │ │ ├── zmodem-transfer.jsx
│ │ │ │ └── zmodem.styl
│ │ │ ├── terminal-info
│ │ │ │ ├── activity.jsx
│ │ │ │ ├── base.jsx
│ │ │ │ ├── content.jsx
│ │ │ │ ├── disk.jsx
│ │ │ │ ├── index.jsx
│ │ │ │ ├── network.jsx
│ │ │ │ ├── resource.jsx
│ │ │ │ ├── run-cmd.js
│ │ │ │ ├── terminal-info.styl
│ │ │ │ └── up.jsx
│ │ │ ├── terminal-theme
│ │ │ │ ├── index.jsx
│ │ │ │ ├── terminal-theme-list.styl
│ │ │ │ └── theme-list.jsx
│ │ │ └── text-editor
│ │ │ ├── edit-with-system-editor.jsx
│ │ │ ├── editor-form.jsx
│ │ │ └── index.jsx
│ │ ├── css
│ │ │ ├── antd-overwrite.styl
│ │ │ ├── basic.styl
│ │ │ ├── includes
│ │ │ │ ├── box.styl
│ │ │ │ ├── font-size.styl
│ │ │ │ ├── index.styl
│ │ │ │ ├── text.styl
│ │ │ │ └── theme-default.styl
│ │ │ ├── less-dev.less
│ │ │ ├── less-prod.less
│ │ │ └── theme.less
│ │ ├── entry
│ │ │ ├── basic.jsx
│ │ │ ├── index.jsx
│ │ │ └── worker.js
│ │ ├── store
│ │ │ ├── app-upgrade.js
│ │ │ ├── batch-input-history.js
│ │ │ ├── bookmark-group.js
│ │ │ ├── bookmark.js
│ │ │ ├── common.js
│ │ │ ├── context-menu.js
│ │ │ ├── db-upgrade.js
│ │ │ ├── event.js
│ │ │ ├── index.js
│ │ │ ├── init-state.js
│ │ │ ├── item.js
│ │ │ ├── load-data.js
│ │ │ ├── quick-command.js
│ │ │ ├── session.js
│ │ │ ├── setting.js
│ │ │ ├── sidebar.js
│ │ │ ├── sync.js
│ │ │ ├── system-menu.js
│ │ │ ├── tab.js
│ │ │ ├── terminal-theme.js
│ │ │ ├── transfer-history.js
│ │ │ ├── transports.js
│ │ │ ├── ui-theme.js
│ │ │ └── watch.js
│ │ └── views
│ │ └── index.pug
│ └── test
│ └── e2e
│ ├── 001.init.spec.js
│ ├── 002.init.setting.spec.js
│ ├── 003.basic-terminal.spec.js
│ ├── 004.basic-sftp.spec.js
│ ├── 005.basic-ssh.spec.js
│ ├── 006.basic-terminal-split.spec.js
│ ├── 007.basic.history.spec.js
│ ├── 008.basic.bookmarks.spec.js
│ ├── 009.basic.file-manager.spec.js
│ ├── 010.basic-sftp-file-transfer.spec.js
│ ├── 011.basic.terminal-themes.spec.js
│ ├── 012.basic.local-symbolic-link.spec.js
│ ├── 013.tabs.spec.js
│ ├── 014.terminal-symlink.spec.js
│ ├── 015.timeout-setting.spec.js
│ ├── 016.quick-commands.spec.js
│ ├── 017.upgrade.check.spec.js
│ ├── common
│ │ ├── app-options.js
│ │ ├── basic-terminal-test.js
│ │ ├── client-extend.js
│ │ ├── env.js
│ │ ├── is-os.js
│ │ ├── lang.js
│ │ ├── log.js
│ │ ├── uid.js
│ │ └── wait.js
│ └── enc.spec.js
└── electerm源代码_electerm-src-1.18.0.zip
38 directories, 336 files