Clojure で記述されたデスクトップ アプリケーションがありますが、これは JVM の起動時間が非常に長く、ClojureScript に非常に適しています。JVM の jar ファイルとして配布されますが、ClojureScript/JavaScript に相当するものは何ですか?
2 に答える
The deployment rules for regular javascript apply. There's nothing wrong with just sending the user the optimized .js file emitted from clojurescript's compiler. Usually this means double clicking the script or running from command line as if it were python or ruby.
Can you do Desktop Development using JavaScript?
For windows machines, you have Windows Script House http://msdn.microsoft.com/en-us/library/9bbdkx3k(VS.85).aspx
If you run a *nix you can use Node.js http://nodejs.org/ Note: You may need to lookup tips for getting google's closure library to work with node.js via https://github.com/hsch/node-goog if you will depend on it.
または、このようなものですか?https://github.com/maccman/macgap