This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-01-13
Channels
- # aws-lambda (7)
- # beginners (80)
- # boot (134)
- # cider (11)
- # cljs-dev (5)
- # cljsjs (3)
- # cljsrn (19)
- # clojure (144)
- # clojure-austin (2)
- # clojure-berlin (3)
- # clojure-greece (6)
- # clojure-italy (3)
- # clojure-russia (95)
- # clojure-spec (57)
- # clojure-uk (120)
- # clojure-za (2)
- # clojurescript (71)
- # component (1)
- # css (1)
- # cursive (22)
- # datascript (2)
- # datomic (101)
- # dirac (9)
- # docker (3)
- # emacs (10)
- # events (2)
- # immutant (3)
- # leiningen (2)
- # om (63)
- # om-next (1)
- # onyx (6)
- # pedestal (55)
- # portland-or (3)
- # protorepl (2)
- # re-frame (30)
- # reagent (10)
- # ring-swagger (1)
- # rum (31)
- # spacemacs (5)
- # specter (9)
- # untangled (90)
- # vim (46)
- # yada (2)
Can I get a last help before I sleep, hehehe, this one is causing an error and I don't know why:
(s/join " " (map (fn [c] (if (blank? c) "š" nil)) (s/split @char #" ")))
The chinese version of React Native? https://weex-project.io/
It seems like they're going for "Write Once Run Everywhere" and it's based off vue.js, not react. However, all the rest seems really similar. Being backed by Alibaba it can seriously grow.
Nice find, that is rather new! Most of the info pages are still blank š
I am using re-natal to develop a iOS app and here are the steps according the re-natal website re-natal use-ios-device real re-natal use-figwheel lein figwheel react-native bundle --entry-file index.ios.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios lean prod-build The app works fine on Xcode with simulator and device Deploy to the App Store . However the app when installed from the App Store opens and goes in a infinite loop for āWaiting for figwheel to load files ā Any ideas on the missing steps
@wojciech It (https://weex-project.io/) also works with Rax a new React-like http://rax.taobaofed.org/
(which is horribly documented š )
@rnandan273 It seems you have a development build deployed, in production it should never load fighwheel.
@vikeri what would be a better alternative to re-natal
I am setting the release option on Xcode
@rnandan273 Iām using boot-react-native: https://github.com/mjmeintjes/boot-react-native/ and thereās also exponent: https://github.com/tiensonqin/exponent-cljs-template Exponent might be a convenient option if you are not using a lot of native functionality, havenāt used it though
Ok thanks @vikeri will give a try with it
Iām developing a re-natal app. Made some small changes and now figwheel throws the "Don't know how to create ISeq from: clojure.lang.Keywordā error and it shows the 1st line as the cause. Iām unable to trace the cause, with all the java stacktrace š Any ideas on how to trace where Iāve erred....
@rnandan273 Like @vikeri said, you are using a dev build to package the app for release. Looking at the project.clj, it seems like you need to run lein prod-build
before you run react-native command.
at least thatās what it seems like š Iāve never released anything myself but thought Iād point that out in case it helps.
I found out the issue. I imported a namespace like this [namespace :refer :all] and that is the problem. Referring each function solved this š