https://github.com/kittaakos/theia-webpack-visualizer
A plug-in that visualizes Webpack dependencies inside Theia
https://github.com/kittaakos/theia-webpack-visualizer
Last synced: 3 months ago
JSON representation
A plug-in that visualizes Webpack dependencies inside Theia
- Host: GitHub
- URL: https://github.com/kittaakos/theia-webpack-visualizer
- Owner: kittaakos
- License: apache-2.0
- Created: 2017-12-12T14:55:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-14T08:56:29.000Z (over 7 years ago)
- Last Synced: 2024-05-01T21:19:12.387Z (about 1 year ago)
- Language: TypeScript
- Size: 150 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# Hello World Extension Example
The example of how to build the Theia-based applications with the theia-webpack-visualizer-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 theia-webpack-visualizer-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 theia-webpack-visualizer-extension
yarn watchStart watching of the electron example.
yarn rebuild:electron
cd electron-app
yarn watchLaunch `Start Electron Backend` configuration from VS code.
## Publishing theia-webpack-visualizer-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