Fork me on GitHub
#beginners
<
2016-10-30
>
keatondunsford02:10:51

Hey y’all. 🙂 Quick non-scientific poll question: I’m starting a new ClojureScript project with Om Next, and haven’t really been able to find any new blog posts, Reddit threads or tweets on the best Clojure server-side framework for React/React-Native CLJS apps as of late 2016. I did see both the Om Next demo, CircleCi’s frontend and the Precursor app now open-sourced all use Ring. But I’m not sure if there’s a general consensus now given all the activity in the community as of late, if one were to start a new Om Next project from scratch, what the simplest (in Rich Hickey/David Nolen terms) framework of choice is now. Pedestal has the backing of Cognitect, Arachne is almost ready for alpha, and new things like Duct and Luminus have popped up, etc. Thoughts on if Ring is still the way to go? Would seriously appreciate any input for a newbie. 🙂 Thanks in advance!

keatondunsford02:10:03

Added: My intuition is to trust whatever Cognitect is backing. Counterargument I guess would be to use whatever is the most composable, which sounds like it’s Ring given the amount of available libraries, and more are getting made all the time. Kind of like the Boot > Leiningen argument for long-term projects. But are Pedestal’s opinionated design choices good, like Om Next’s are good? I’m delving more into the docs now but would love input if any of y’all have already made your own decisions on this for your own projects. 🙂 Additional context: I’m hoping to scale this particular project in the context of a hopeful startup. So without overengineering, I would kind of like to think long-term, but also something hopefully both simple and easy for a beginner like me.

keatondunsford02:10:49

More context: The high-level concept I’m working on is to essentially build “Reddit meets Snapchat stories and Tinder” for creating project-based communities around video tutorials on any subject (like building flying cars, or making rap beats, or a new VR video game), and then try and connect people physically who are near each other’s locations and want to make the same cool things together in person. So architecture wise, I’ve been looking into separating a lot of the different backend pieces via microservices in Dockerized containers all connected by Clojurized/EDNized APIs. Which it sounds like Pedestal is sort of designed for out-of-the-box.

sveri06:10:01

@keatondunsford I am not sure about the backend stack, for my private stuff I stayed with http-kit for the last years, but ring is surely similar / better as well. For my next project I wanted to look at pedestal too. I hope they got its documentation sorted out inbetween, which kept me back 3 years ago. For the frontend side I found reagent easier to understand than Om. Given that you say there are not much tutorials out there for Om.next you might be better off with reagent which is API stable for several years now and has a relatively big support in the community. That said, I totally like what David Nolen does and would experiment with Om.next too, just out of curiosity.

sveri06:10:44

Also, will that be open source? I have been tinkering with a similar idea in my head for a long time too. Especially the part where you connect local people is important to me. This is something that many platforms dont seem to think of from the start

keatondunsford06:10:10

For my use case, the GraphQL/Falcor side of things is a huge value proposition I can’t ignore. Also, after delving into the tutorials, I actually think Om Next is more simple, in the Clojure-world definition of “simple”. I love the abstraction of the reconciler and treating application state as one giant immutable data structure. This blog post by CircleCI really sold me on it: https://circleci.com/blog/why-we-use-om-and-why-were-excited-for-om-next/

keatondunsford06:10:49

@sveri Thank you for your input though. 🙂 I’ll check all that out!

keatondunsford06:10:48

I’ve been debating open-sourcing it, but I gotta think about it for a little longer. 🙂

sveri07:10:03

I read that article too and the idea of having something similar to graphql is great. But, I was following Om along and used it for some time. The thing is, David has only so much time and he uses most of it for clojurescript, so my experience with om was, that it was good to use as it was, but only few advancement happened, and I fear it will take a long time for om.next to be production ready and have an ecosystem evolved around it. But thats just my subjective fear based on things that happend some time ago and times change, so it might be different now

seancorfield07:10:10

We built small systems in Om and then Reagent -- and we liked Reagent a lot better. We haven't yet tried Om.Next. I've seen some of the presentations -- including one in person -- and I have to admit that I just don't get it. So I'll probably stick with Reagent and maybe re-frame. We like Sente as well (and used it with Reagent).

markx11:10:34

Hi all, is there a way to read binary file without using java?

markx13:10:12

hmm… what is a reader? intputStream?

markx13:10:01

I know nothing about java, that’s why I’m asking how to do it without java.

Alex Miller (Clojure team)13:10:58

Clojure relies on the host (Java) for I/O so you will need to learn a bit of the Java API for this

Alex Miller (Clojure team)13:10:59

Readers are for char streams, so you won't want that

Alex Miller (Clojure team)13:10:13

InputStream is for binary streams

Alex Miller (Clojure team)13:10:45

There are also newer NIO channels

Alex Miller (Clojure team)13:10:37

How you use these will depend a lot on what you want to do

tap13:10:56

Thanks for correction, Alex

markx13:10:59

Ah… good to know.

markx13:10:17

But is this really the right way to do it? I mean, for a serious language, shouldn’t it have its own way to do all the common tasks, like reading a binary file?

markx13:10:08

@tap Thanks for the example! I’ll try to read through it.

tap13:10:59

Clojure encourages to call directly to Java library for things which aren’t too verbose. Wrapper may come with a cost of unnecessary complications and performance penalty

markx13:10:48

so after all, one still needs to learn Java to learn Clojure?

markx13:10:17

I would be very happy if someone implements Clojure’s syntax without Java. 🙂

Prakash13:10:50

there is Clojurescript, which is on top of JS

markx14:10:22

Yeah I tried it a bit. I’ll revisit when it has a compiler not written in java. 🙂

bwstearns16:10:44

@markx, I think you may be waiting a while 🙂 One of the benefits of Clojure's JVM integration is all the free stuff you get from Java's ecosystem (and correspondingly the JS one for cljs). You can definitely get productive in Clojure without being expert in Java, you'll just end up incidentally knowing some elements along the boundary and knowing how to read a Java stack trace.

agile_geek18:10:45

@markx I don't think you need to learn 'Java' at all as there are Clojure wrappers around most Java classes. As @bwstearns states you may need to understand a stack trace (but true of a number of languages) and with Clojurescript you need to understand some JS not Java. I can't see Rich ever moving off the JVM as most of the advantages are it's a hosted language. If you really can't stand JVM you can run ClojureCLR and run on the .NET common language runtime!

bwstearns18:10:50

@agile_geek but then you'd end up learning some C# so you'd end up knowing some java anyways 😄