From 0557a16f81aad86d43f754c12a65788e370a3058 Mon Sep 17 00:00:00 2001 From: Denis Date: Sun, 9 Aug 2020 20:25:22 +0300 Subject: [PATCH] Update article.md Added link to Brython Python transpiler to JavaScript --- 1-js/01-getting-started/1-intro/article.md | 1 + 1 file changed, 1 insertion(+) diff --git a/1-js/01-getting-started/1-intro/article.md b/1-js/01-getting-started/1-intro/article.md index 30d08f05..5e4f98c0 100644 --- a/1-js/01-getting-started/1-intro/article.md +++ b/1-js/01-getting-started/1-intro/article.md @@ -110,6 +110,7 @@ Examples of such languages: - [TypeScript](http://www.typescriptlang.org/) is concentrated on adding "strict data typing" to simplify the development and support of complex systems. It is developed by Microsoft. - [Flow](http://flow.org/) also adds data typing, but in a different way. Developed by Facebook. - [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 allow to write application in pure Python without JavaScript. There are more. Of course, even if we use one of transpiled languages, we should also know JavaScript to really understand what we're doing.