DEV Community

Cover image for build your own theia ide AND your own chrome browser extension in a day
Clive Da
Clive Da

Posted on • Updated on

build your own theia ide AND your own chrome browser extension in a day

build your own theia ide AND your own chrome browser extension in a day

AM (*)

theia quickstart instructions (including installing nvm node etc etc)

  • wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
  • (logout and login again ! or source the bash script if you are a pro)
  • nvm install 10
  • nvm use 10
  • npm -g install yarn # (TOPTIP -g means READ and SET options globally)
  • mkdir mytheia
  • cd mytheia
  • vi package.json # (C&P from https://theia-ide.org/docs/composing_applications)
  • yarn # will autoinstall everything from your package.json
  • yarn theia build (takes approx 400 seconds)
  • yarn theia start
  • open http://localhost:3000

theia full instructions

PM (*)

chrome browser extension quickstart

chrome browser extension full instructions

(*) = timings should be adjusted accordingly if you start at say 11 am :)

Top comments (1)

Collapse
 
rodrigojuarez profile image
Rodrigo Juarez

Nice to know about theia! I didn't know anything about it until I saw this post