- Notifications
You must be signed in to change notification settings - Fork3.9k
add: Scala, PureScript and ReScript as alt languages#3658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -112,6 +112,9 @@ Examples of such languages: | ||
- [Dart](https://www.dartlang.org/) is a standalone language that has its own engine that runs in non-browser environments (like mobile apps), but also can be transpiled to JavaScript. Developed by Google. | ||
- [Brython](https://brython.info/) is a Python transpiler to JavaScript that enables the writing of applications in pure Python without JavaScript. | ||
- [Kotlin](https://kotlinlang.org/docs/reference/js-overview.html) is a modern, concise and safe programming language that can target the browser or Node. | ||
- [Scala](https://www.scala-js.org/) lets you write less to do more and it's s static types help you to build safe systems by default. It targets browser and Node. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. @thelissimus I wouldn't addhttps://www.scala-js.org just yet as the project seems too small at this time to warrant adding to such a general article Author
| ||
- [PureScript](https://www.purescript.org/) is a strongly-typed functional programming language that resembles Haskell and compiles to JavaScript. | ||
- [ReScript](https://rescript-lang.org/) is a robustly typed language that compiles to efficient and human-readable JavaScript. | ||
There are more. Of course, even if we use one of these transpiled languages, we should also know JavaScript to really understand what we're doing. | ||