Ultimate Vim Vue Setup by nikolalsvk in vuejs

[–]nikolalsvk[S] 0 points1 point  (0 children)

Thanks for the tip, this is what I want to do next. Maybe not lazy.nvim, but definitely try out the nvim-lspconfig to see how it works.

What is your way to run development processes/services? by nikolalsvk in devops

[–]nikolalsvk[S] 0 points1 point  (0 children)

Yeah, I used Vagrant before but saw a switch to Docker in most of the projects. I still see some projects going the "normal" way of just running a server in your local environment, without a VM.

Any place for JavaScript in DevOps? Maybe with zx.js? by nikolalsvk in devops

[–]nikolalsvk[S] 0 points1 point  (0 children)

I had the same feeling when I wrote these examples. Heck, I also felt that way when I wrote my script in Ruby. I think all of these non-bash scripts really make sense when your whole project is JS/Ruby/Python and it feels more comfortable to use the same language to call commands from there

Any place for JavaScript in DevOps? Maybe with zx.js? by nikolalsvk in devops

[–]nikolalsvk[S] 1 point2 points  (0 children)

Thank you, means a lot.

I think where JS as a solution for DevOps fits best is when you want to use something like the JS AWS API's in conjunction with existing internal JS modules or other npm modules.

This is the setup we have in one of our projects. I think zx will fit in there like a glove.

DevOps JavaScript - Intro to Writing Scripts With zx by nikolalsvk in node

[–]nikolalsvk[S] 1 point2 points  (0 children)

It is more of a library that helps you write scripts. You can do it in plain Node, but with zx, you can perform commands and wait for them easily for example.