From Mac to Linux: Web Development with Linux
1–10 of 106 posts
Re: From Mac to Linux: Web Development with Linux
#2Re: From Mac to Linux: Web Development with Linux
#3So what is so much better on Linux than Mac? You can use nvm, etc
Re: From Mac to Linux: Web Development with Linux
#4So what is so much better on Linux than Mac? You can use nvm, etc
Using the same OS that you deploy to
Better say that environment will be the same, I guess.
That being said - as an ex-Linux user (for about 10 years) I see now real reason for this kind of switch. You can have the same (or almost the same) env on you macOS.
Re: From Mac to Linux: Web Development with Linux
#5Unfortunately the author delves into text editors, which can be flame inducing.
Re: From Mac to Linux: Web Development with Linux
#6Earlier quoted context omitted.
Using the same OS that you deploy to
To be honest - kernel will be the same (some times not though). OS will be most likely different. Better say that environment will be the same, I guess. That being said - as an ex-Linux user (for about 10 years) I see now real reason for this kind of switch. You can have the same (or almost the same) env on you macOS.
Re: From Mac to Linux: Web Development with Linux
#7All what the articles says I do achieve simply by using docker and I have all the nice integrations around. I can have any target environment setup and switch between them in seconds. And since I can mount my code directories directly into the docker containers I don't need to do any complicated scp like deployments.
Well, but in the end it's a matter of personal taste. I am happy where I am :-)
Re: From Mac to Linux: Web Development with Linux
#8So what is so much better on Linux than Mac? You can use nvm, etc
Re: From Mac to Linux: Web Development with Linux
#9Earlier quoted context omitted.
To be honest - kernel will be the same (some times not though). OS will be most likely different. Better say that environment will be the same, I guess. That being said - as an ex-Linux user (for about 10 years) I see now real reason for this kind of switch. You can have the same (or almost the same) env on you macOS.
If we take the most popular linux choice for servers and desktop - Ubuntu as an example - that means using identical kernel/packages/libraries for your development and production. You cannot achieve that with MacOS as your dev OS.
Kernel - obviously, as I said earlier. As for packages and libs - Brew + something like pip\rvm\whatever will most likely solve this for you. You won't have the same lib, because it was build for a different env, but the way it works should stay the same. If not - I'd rather consider using different lib.
This + docker(or something similar) as someone already mentioned.
Re: From Mac to Linux: Web Development with Linux
#10Earlier quoted context omitted.
To be honest - kernel will be the same (some times not though). OS will be most likely different. Better say that environment will be the same, I guess. That being said - as an ex-Linux user (for about 10 years) I see now real reason for this kind of switch. You can have the same (or almost the same) env on you macOS.
If we take the most popular linux choice for servers and desktop - Ubuntu as an example - that means using identical kernel/packages/libraries for your development and production. You cannot achieve that with MacOS as your dev OS.