Fork me on GitHub
#clojurescript
<
2016-11-13
>
amirrajan02:11:38

@pvinis good comparison repo I look at on and off: https://github.com/levand/qttt

pvinis08:11:45

ah yes i saw that

pvinis08:11:08

i was wondering if there is a bigger application. but i will check it again

rauh16:11:35

How do I emit #js [...] from a clj macro?

anmonteiro16:11:16

@rauh use array or into-array

phill17:11:00

"ClojureScript Node.js REPL server listening on 49974" -- what client can connect to that port?

dnolen17:11:21

@phill telnet for example

phill17:11:00

When telnet connects it immediately says "ready", but ready for what? when I type (+ 4 2) and hit Enter there is no answer

Pablo Fernandez19:11:28

I have a value of type #object[Promise "function Promise() { [native code] }”], in a nodejs application. Anybody knows how to resolve the promise?

anmonteiro20:11:10

@pupeno that's probably not a promise, but a Promise constructor

Pablo Fernandez20:11:16

That’s the code snippet. I’m just trying to get the value of s. The JavaScript code can be seen here: https://github.com/bitchan/eccrypto

Pablo Fernandez20:11:35

Any ideas how to just get the value in a synchronous way?

anmonteiro20:11:24

not possible

anmonteiro20:11:39

promises are asynchronous, can't be made synchronous

Pablo Fernandez20:11:30

argh… that’s really annoying. One single library will infect the design of a lot of my app.