https://github.com/kittaakos/theia-test
Test of theia USB service
https://github.com/kittaakos/theia-test
Last synced: 2 months ago
JSON representation
Test of theia USB service
- Host: GitHub
- URL: https://github.com/kittaakos/theia-test
- Owner: kittaakos
- Created: 2021-01-19T15:25:27.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-18T21:46:51.000Z (over 4 years ago)
- Last Synced: 2025-01-31T12:49:30.495Z (4 months ago)
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# theia-test
Theia test repository
## 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 10
nvm use 10Install yarn.
npm install -g yarn
## Running the browser example
yarn
yarn rebuild:browser
cd browser-app
yarn startOpen http://localhost:3000 in the browser.
## Running the Electron example
yarn
yarn rebuild:electron
cd electron-app
yarn start## Developing with the browser example
Start watching of theia-test.
cd theia-test
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 theia-test.
cd theia-test
yarn watchStart watching of the electron example.
yarn rebuild:electron
cd electron-app
yarn watchLaunch `Start Electron Backend` configuration from VS code.