Ask HN: I hate JavaScript
1–10 of 33 posts
Re: Ask HN: I hate JavaScript
#2That said, you don't need JS to make a webapp. You can do it strictly with server-side code and HTML.
Re: Ask HN: I hate JavaScript
#3My biggest transition to being comfortable with it was to find a happy place in terms of editing. After years of C/C++ it was not easy to be picking fragments of code out of DOM bellyfluff lint. So how do you use javascript dev tools and what don't you like about them I guess?
Re: Ask HN: I hate JavaScript
#4For building webapps try CoffeeScript (inspired from Ruby and Python, compiles to JavaScript), Dart (seems to be inspired from Java, compiles to JavaScript), ClojureScript (a Lisp language, compiled to JavaScript) ...
Re: Ask HN: I hate JavaScript
#5Re: Ask HN: I hate JavaScript
#6Re: Ask HN: I hate JavaScript
#7JavaScript is at the heart of web apps, where DOM, CSS, and logic are married. Sure, you can bypass it using server side scripting or languages that convert to JS, but in the end, you're trying to sew a dress using only hotglue. It'll work, but it's the wrong tool for the job, and it'll lead you down a road of pain and headaches.
I'd recommend collaborating with someone who knows JavaScript well, then you can focus on backend logic and collaborate on other pieces.
Re: Ask HN: I hate JavaScript
#8JavaScript is at the heart of web apps, where DOM, CSS, and logic are married. Sure, you can bypass it using server side scripting or languages that convert to JS, but in the end, you're trying to sew a dress using only hotglue. It'll work, but it's the wrong tool for the job, and it'll lead you down a road of pain and headaches.
I'd recommend collaborating with someone who knows JavaScript well, then you can focus on backend logic and collaborate on other pieces.
Re: Ask HN: I hate JavaScript
#9There are lots of languages nicer than JS that compile down to JS. That said, you don't need JS to make a webapp. You can do it strictly with server-side code and HTML.