Earlier quoted context omitted.
Whatsapp.
whats whatsapp built on?
Ask HN: What's your favorite way of getting a web app up quickly in 2018?
541–550 of 569 posts
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#542ember and rails are SUPER optimized for rapid development. You don't have to spend the next 3 weeks configuring a React app so it builds right :) . Not to mention the next time you do it, it will be different :).
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#543Earlier quoted context omitted.
If it is open to the public, your train wreck cannot be open to common vulnerabilities like sql injection. Full stop. You can avoid unit or integration tests, not complete features, or cut any corner you want aside from basic security.
Sure it can. Almost every website on the internet right now has undiscovered security holes. Obviously you won't be leaving them open on purpose, but not using a framework is a legit choice and "it provides security that you can't implement without one" is a bad argument. Yes there's convenience in "somebody already thought about everything you need before you did" but there are also security libraries, checklists, t…
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#544Earlier quoted context omitted.
I think it is much easier to get real-world nontrivial work done in Clojurescript compared to Elm.
Can you go into any more specifics? I'm genuinely interested! Do you think it'll stay true as Elm matures?
Elm could have been something, but I don’t expect it gain any mindshare, and the boat has sailed.
Clojurescript is a dynamic language, with easy JS interop and nearly zero boilerplate, so I still think it is the fastest route to a production app.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#545Earlier quoted context omitted.
Sorry to fact check here but on my Rails app I am getting 200ms return times. This is running a web application and a few hybrid mobile applications. Are you saying that basically out of the box with Elixir/Phoenix I would get 20ms return times? That would be amazing but I find that highly unlikely.
For my load balancer heartbeat checks, I'm returning responses in 200µs.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#546Earlier quoted context omitted.
Sorry to fact check here but on my Rails app I am getting 200ms return times. This is running a web application and a few hybrid mobile applications. Are you saying that basically out of the box with Elixir/Phoenix I would get 20ms return times? That would be amazing but I find that highly unlikely.
Yes, and likely faster. http://www.akitaonrails.com/2015/10/27/how-fast-is-elixir-ph...
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#547Earlier quoted context omitted.
With the possible exception of Clojure :). See Paul Graham on Lisp as the secret weapon.
What's the biggest Clojure start-up at the moment? Is it CircleCI? Wal-Mart is pretty big into Clojure these days, but they were already huge.
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#548Earlier quoted context omitted.
I second this; Go + React.js (Vue.js in my case) I talked about it just a couple of hours ago [1]. [1] https://news.ycombinator.com/item?id=17215658
That's interesting... I think I'll spend a couple of days playing with Vue to see if I can get rid of Webpack and Babel, because they're an enormous pain to set up (especially as they keep changing their config schema every major version release - I think I've climbed Webpack's config learning cliff three times now).
Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#549Re: Ask HN: What's your favorite way of getting a web app up quickly in 2018?
#550I was mostly using with React and firebase for fast prototyping. Then I started using more of Flow to have some type safety. But overtime I started looking for a stronger type system that would allow me to experiment and build stuff easily. I feel like I started getting good enough with Purescript to build stuff fast, couldn't have the time yet to build a big thing to compare how fast my work flow is compared to reac…