Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azatsarynnyy/che-theia-ssh-extension-sidebar
SSH management using sidebar and d&d
https://github.com/azatsarynnyy/che-theia-ssh-extension-sidebar
Last synced: 13 days ago
JSON representation
SSH management using sidebar and d&d
- Host: GitHub
- URL: https://github.com/azatsarynnyy/che-theia-ssh-extension-sidebar
- Owner: azatsarynnyy
- Created: 2018-05-05T14:33:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-05T14:36:08.000Z (over 6 years ago)
- Last Synced: 2024-11-12T09:50:55.618Z (2 months ago)
- Language: TypeScript
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Theia - SSH Extension
The example of how to build the Theia-based applications with the SSH extension.## Getting started
Install [nvm](https://github.com/creationix/nvm#install-script).
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash
Install npm and node.
nvm install 8
nvm use 8Install yarn.
npm install -g yarn
## Running the browser example
yarn rebuild:browser
cd browser-app
yarn startOpen http://localhost:3000 in the browser.
## Running the Electron example
yarn rebuild:electron
cd electron-app
yarn start## Developing with the browser example
Start watching of the hello world extension.
cd ssh-extension
yarn watchStart watching of the browser example.
yarn rebuild:browser
cd browser-app
yarn watchLaunch `Start Browser Backend` configuration from VS code.
Open http://localhost:3000 in the browser.
## Developing with the Electron example
Start watching of the hello world extension.
cd ssh-extension
yarn watchStart watching of the electron example.
yarn rebuild:electron
cd electron-app
yarn watchLaunch `Start Electron Backend` configuration from VS code.
## Publishing ssh-extension
Create a npm user and login to the npm registry, [more on npm publishing](https://docs.npmjs.com/getting-started/publishing-npm-packages).
npm login
Publish packages with lerna to update versions properly across local packages, [more on publishing with lerna](https://github.com/lerna/lerna#publish).
npx lerna publish