|
|
|
|
|
by yogthos
3610 days ago
|
|
Honestly, the fact that people put up with this in Js ecosystem amazes me to no end. I've been working with ClojureScript on the front-end for the past year, and it's just night and day. There's a single build tool (http://leiningen.org/), and it manages dependencies, tests, builds, etc. Things just work. Setting up a new project is as simple as: lein new reagent-frontend myapp I can go and start developing it by running lein figwheel After it starts I can open the browser at localhost:3449 and any changes I make in the source will be immediately reflected. Once I want to package for release I just do: lein clean
lein release That's it, I now have minified and pruned Js file that's ready for production. |
|