Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for IntelliJ Remote Dev experience similar to VS Code Remote Dev Extension Pack [closed]

VS Code allows a local development experience with source code and source execution on a remote machine: https://code.visualstudio.com/docs/remote/remote-overview

Is there a similar tool to this for use with IntelliJ? The VSCode extension pack doesn't need to mount the files from the remote source locally. It actually runs a server behind the scene on the remote box and serves over files one at a time as you need to access them to the IDE running on your local machine.

like image 369
Dominic Napoleon Avatar asked Mar 17 '20 19:03

Dominic Napoleon


People also ask

Is IntelliJ IDEA better than VS Code?

VSCode by default uses a really low amount of RAM, which allows us to have multiple projects open at the same time. IntelliJ tends to be heavy – working with 3 projects simultaneously can make it quite unresponsive, despite having 32GB of RAM.

Is IntelliJ the same as VS Code?

IntelliJ is a full IDE which comes with 'everything' (intellisense, debugger etc) and VS Code is just a text editor. True, there are lots of plugins but it's still a text editor. Also, IntelliJ is awesome.

Does IntelliJ have remote SSH?

You can launch an SSH Session right from IntelliJ IDEA. By running commands in a dedicated SSH terminal, you can access data on a remote Web server or a Vagrant instance (virtual machine) via an SSH tunnel, mainly upload and download files.

Can IntelliJ open remote project?

If you already have IntelliJ IDEA installed on your remote server, you can launch it manually and connect to the remote project started in that IDE. It works the same way as from JetBrains Gateway.


1 Answers

Update 2021-11-04: JetBrains now has 2 products/features that enable this sort of remote development:

  • JetBrains Projector (ref)
  • JetBrains Gateway (ref)

Original Answer

IntelliJ IDEA doesn't have this feature at the moment, you can follow the corresponding feature request for updates.

Quoting the blog post:

We’re considering the possibility to extend the “thin client” approach to other scenarios beyond collaborative editing, such as running the IDE backend in the cloud, but we aren’t ready to announce specific plans in that area.

like image 58
CrazyCoder Avatar answered Oct 13 '22 22:10

CrazyCoder