When comparing Haste vs Python (via Skulpt), the Slant community recommends Haste for most people. In the question“What are the best languages that compile to JavaScript? ” Haste is ranked 19th while Python (via Skulpt) is ranked 34th. The most important reason people chose Haste is:
Haste was designed to allow both the client and server to be written as parts of the same, type-safe application. This is in stark contrast to most other options, where the client and server are considered two separate entities, resulting in extra manual validation code and more chances for type errors.
Ranked in these QuestionsQuestion Ranking
Pros
Pro Client and Server as the same application
Haste was designed to allow both the client and server to be written as parts of the same, type-safe application. This is in stark contrast to most other options, where the client and server are considered two separate entities, resulting in extra manual validation code and more chances for type errors.
Pro Almost full power of Haskell
Haste supports the Haskell 2010 standard except for Template Haskell as well as most GHC extensions.
Pro Automatic, type safe program slicing
Haste lets you write client and server as a single program, automatically generating code for the server as well as the client, giving you full type safety even across the Internet.
Pro Generates small, reasonably performant code
Pro Suspensions
You can write blocking methods that don't cause the whole page to hang, something difficult to do in languages targeting Javascript.
Pro Interactive REPL
You can evaluate new Python code in the browser written by the user.
Cons
Con Lacks some minor Haskell functionality
Lacks support for Template Haskell.
Con Python 2.6
Skulpt implements an outdated version of the Python language.