GitXplorerGitXplorer
j

Typefox-Theia-Test

public
0 stars
0 forks
1 issues

Commits

List of commits on branch main.
Unverified
5f1737913ff05648b0fda3143a3a9c8bf98f1058

further fixes to getting rootWorkingDirectories

committed 2 years ago
Unverified
cf873464f0b7a0463e935beda6165236cc056ee0

workspace path acquiring implemented

committed 2 years ago
Unverified
d53824eef7c3a479e7084b148f83d4cfbb533c14

basic functionality working

committed 2 years ago
Unverified
283c5f0fe0a58db381a4e62f1981da907e60e05e

fixes, refactorings for jrpc + usig older theia version

committed 2 years ago
Unverified
ed5a5619eadf1e68f52c82e1d21ec304e1b4385c

first version of the base components.

committed 2 years ago
Unverified
e02ee7c6bbf1fdd7f1263872a922398a9562a4e1

initial commit; generated Hello world extension

committed 2 years ago

README

The README file for this repository.

typefox-test

The example of how to build the Theia-based applications with the typefox-test.

Getting started

Install nvm.

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash

Install npm and node.

nvm install 10
nvm use 10

Install yarn.

npm install -g yarn

Running the browser example

yarn start:browser

or:

yarn rebuild:browser
cd browser-app
yarn start

or: launch Start Browser Backend configuration from VS code.

Open http://localhost:3000 in the browser.

Running the Electron example

yarn start:electron

or:

yarn rebuild:electron
cd electron-app
yarn start

or: launch Start Electron Backend configuration from VS code.

Developing with the browser example

Start watching all packages, including browser-app, of your application with

yarn watch

or watch only specific packages with

cd typefox-test
yarn watch

and the browser example.

cd browser-app
yarn watch

Run the example as described above

Developing with the Electron example

Start watching all packages, including electron-app, of your application with

yarn watch

or watch only specific packages with

cd typefox-test
yarn watch

and the Electron example.

cd electron-app
yarn watch

Run the example as described above

Publishing typefox-test

Create a npm user and login to the npm registry, more on npm publishing.

npm login

Publish packages with lerna to update versions properly across local packages, more on publishing with lerna.

npx lerna publish