From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=0.0 required=3.0 tests=BAYES_40,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.5-pre1 X-Received: by 2002:a37:7c07:: with SMTP id x7mr17860263qkc.417.1624737116479; Sat, 26 Jun 2021 12:51:56 -0700 (PDT) X-Received: by 2002:a25:2b05:: with SMTP id r5mr21142197ybr.465.1624737116259; Sat, 26 Jun 2021 12:51:56 -0700 (PDT) Path: eternal-september.org!reader02.eternal-september.org!news.mixmin.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sat, 26 Jun 2021 12:51:56 -0700 (PDT) In-Reply-To: <4b543236-2095-4dd5-93b9-2afbb06800c0n@googlegroups.com> Injection-Info: google-groups.googlegroups.com; posting-host=87.117.62.163; posting-account=niG3UgoAAAD7iQ3takWjEn_gw6D9X3ww NNTP-Posting-Host: 87.117.62.163 References: <2b94c73e-c38e-4499-b3b2-7f4d88dfb979n@googlegroups.com> <20208b1b-bbe5-438b-9cd5-06cb6774be32n@googlegroups.com> <2f20e724-5a64-4749-8ab6-4d15067bf2a2n@googlegroups.com> <14a0ea11-c399-434d-a1f7-d5a72d4b6ae1n@googlegroups.com> <64acdedf-e790-458a-b513-62f2a56843c2n@googlegroups.com> <082f2142-c3fb-4b99-9a3a-c82091e1ce96n@googlegroups.com> <4b543236-2095-4dd5-93b9-2afbb06800c0n@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: ASIS for Gnat (was: Any chance of programming a web frontend in Ada 2012? From: Vadim Godunko Injection-Date: Sat, 26 Jun 2021 19:51:56 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader02.eternal-september.org comp.lang.ada:62291 List-Id: I think classic DSA doesn't fit modern web programming well for may aspects= , for instance, user experience (user expect to have some indication of on = going request processing), application architecture (Web application is usu= ally event driven and asynchronous), etc. GNATLLVM/WASM provides good enough basement to develop applications. I've s= ome experience and should say that UI development with AdaWebPack is little= more complicated compare to JS. From the over side, in case of some applic= ations it is possible to reuse old (and develop new) code on both client an= d server sides, and it simplify development of the application in large. On= e more nice thing is same memory layout in WASM VM and x86 CPU, it allows t= o transfer binary data without any additional conversion.