Is there some recomended ide on linux with:
php sintax.
javascript sintax
vue extension sintax.
and finally , I would like to be able to work on remote server using ssh.
btw:
I was working with "code".
It was really nice , but I never could connect it to my development server through ssh.
@leostereo +1 for VS Code... Install the Laravel Extension Pack, it's amazing... PHP Namespace Resolver... Vuter for Vue. JavaScript highlighting is built in... you're good to go.
Honestly, I'm not a fan of using the in-app terminal, I much prefer iTerm. If you're using Windows, eh... uninstall that garbage and install Linux, terminal problem solved. lol kidding, kidding... kind of. :)
Maybe use Cmder or an alternative terminal if you're on Windows.
What is the difference between Visual Studio Code and Visual Studio IDE?
Visual Studio Code is a streamlined code editor with support for development operations like debugging, task
running, and version control. It aims to provide just the tools a developer needs for a quick code-build-debug
cycle and leaves more complex workflows to fuller featured IDEs, such as Visual Studio IDE.
hi you guys , for your recomendations.
I also like vs , but ... it I never could get it working into a remote server.
It is very common that you will work and deploy your app in a remote server so it should be easy to setup.
Are you using it with remote connection ?
btw im on arch linux.
Regards.
@leostereo I would imagine most users here deploy using Envoy, Envoyer, Forge or Vapor. I personally use Envoy with DigitalOcean and am planning to move my apps to Vapor soon.
My current setup might work for you though. Just read into Envoy. It's a simple little add on to run commands from your server locally... so basically you wire it up so your server has access to you repo and your deployment just becomes a pull from your repo to the server using SSH. It's pretty clean and simple.
Here's an example of one of my deployment scripts.
I would think of it in different way. What do you need IDE for? If it is for auto completion then PhpStorm. If it is just simple click thorough then VSC will be more than enough. If it is syntax highlighting then Sublime might suffice. Just write here what pain points you are trying to solve and maybe someone can provide more sensible answer.