From f54cf284aae6f2b63dc55a4218fda9b2967ebecc Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Cabrero Date: Thu, 22 Jun 2023 11:28:54 +0200 Subject: [PATCH] Added new transpilers section and links. (#807) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added new category and suggestion as example * Added reference in content list * Update README.md --------- Co-authored-by: Gökay Gürcan --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 236829d..44d1e76 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/ * [Package Managers](#package-managers) * [Component management](#component-management) * [Loaders](#loaders) + * [Transpilers](#transpilers) * [Bundlers](#bundlers) * [Minimizers](#minimizers) * [Type Checkers](#type-checkers) @@ -114,6 +115,11 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/ * [ESL](https://github.com/ecomfe/esl) - Module loader browser first, support lazy define and AMD. * [modulejs](https://github.com/lrsjng/modulejs) - Lightweight JavaScript module system. +## Transpilers +*Software that converts the modern JavaScript syntax into the older JavaScript syntax.* + +* [SWC](https://swc.rs/) - Extensible Rust-based platform for compilation. + ## Bundlers * [webpack](https://github.com/webpack/webpack) - Packs CommonJs/AMD modules for the browser.