wat-compiler VS thislang

Compare wat-compiler vs thislang and see what are their differences.

wat-compiler

webassembly wat text format to binary compiler (by stagas)

thislang

A subset of javascript implemented in that subset of javascript. Yes, it can run itself. (by BlueBlazin)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
wat-compiler thislang
2 4
18 33
- -
0.0 0.0
over 1 year ago over 1 year ago
JavaScript JavaScript
- MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

wat-compiler

Posts with mentions or reviews of wat-compiler. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-23.
  • Understanding Every Byte in a WASM Module
    6 projects | news.ycombinator.com | 23 Dec 2023
    For some time I've been fascinated by the codebase of a small WAT compiler written in JavaScript.

    https://github.com/stagas/wat-compiler/blob/main/story.txt

    And I mean "small" as a real complement to how readable the entire compiler is. It's also been a great way to appreciate the design of the WASM text format and WASM overall. It's not a Lisp but has a similar feel to it.

    I've been meaning to get more fluent at writing WAT directly, not for any practical purpose but just for pleasure of it. I could see myself gradually building up some abstractions to help me deveolp larger programs, perhaps a slightly higher-level language.

  • Grain: WebAssembly-First Programming Language
    3 projects | news.ycombinator.com | 6 May 2021
    I was also disappointed that this isn't included in the browsers given that it was designed to be very simple to parse and compile. So I tried as an exercise to build such a compiler[0] and indeed it was much easier than I expected (with a few shortcuts of course, being a POC). It is just 5kb gzipped and it compiles to binary most of the WAT code out there and also quite fast, just a few ms. That said, I think writing WAT by hand is only helpful for very small critical hot code, anything more complex and IMO you need an abstraction of some sort.

    [0]: https://github.com/stagas/wel

thislang

Posts with mentions or reviews of thislang. We have used some of these posts to build our list of alternatives and similar projects.
  • Understanding `this` in Javascript
    1 project | dev.to | 2 Aug 2021
    Method calls are nothing special, just calls which have the form .(). For example: const foo = { bar: function () { console.log(this); } }; foo.bar(); Enter fullscreen mode Exit fullscreen mode For method calls, this gets set to the object from which the method was called. Again, functions don't matter* for this, just the calls. function foo() { console.log(this); } let x = { bar: foo }; foo(); // Window x.bar(); // x let baz = x.bar; baz(); // Window Enter fullscreen mode Exit fullscreen mode Even baz will print Window. It's not a method call, it doesn't follow the method call format! 3. Constructor calls Or new calls (are calls too I suppose). In that case this gets set to the empty object {}. function Foo() { console.log(this); } new Foo(); // {} Foo(); // Window let x = { foo: Foo }; x.foo(); // x Enter fullscreen mode Exit fullscreen mode That's pretty much all there is to it......... ........or is it?! I apologize for this Remember how I told you this is all about function calls, not the functions themselves? Well, I lied. Ok look, let me remind you once again: They made javascript in 10 days! The this rules we've discussed above, they are a bit limiting. So there's three* ways you can override these rules. * don't you dare even mention apply 1. call The special call method on functions allows you to pass your own custom value of this to a function call (or the call's scope I should say). function foo() { console.log(this); } foo.call({ a: 42 }); // { a: 42 } Enter fullscreen mode Exit fullscreen mode 2. bind bind is another builtin method on functions. Much like call it too allows you to pass a custom value for this to the function call. Except unlike call, bind doesn't immediately call the function. It instead returns a special 'bound' functions. function foo() { console.log(this); } let bar = foo.bind({ a: 42 }); foo(); // Window bar(); // { a: 42 } Enter fullscreen mode Exit fullscreen mode 3. Arrow functions Arrow functions are the third way to override the call rules for this described previously. Arrow functions capture the this from the function scope in which they are created. function foo() { const bar = () => { console.log(this); }; return bar; } let bar = foo.call({ a: 42 }); bar(); // { a: 42 } Enter fullscreen mode Exit fullscreen mode So they're essentially the same as defining a normal function but then also binding it. // achieves the same effect function foo() { const bar = (function () { console.log(this); }).bind(this); return bar; } let bar = foo.call({ a: 42 }); bar(); // { a: 42 } Enter fullscreen mode Exit fullscreen mode In summary Yes, no pun in the heading this time (oops). The key takeaways are this: In JS this is associated with the current function scope, and since function scopes are associated with functions calls -- this is associated with calls. Those are the rules but they can be overridden. That is the reason why people are often confused when passing functions referencing this to callbacks. It's also why you were told to use arrow functions if you need to pass them to callbacks. I too was confused about this for a long time. Instead of taking the more sensible approach of reading an article such as this one, I instead decided to implement my own javascript. I wrote a subset of javascript. In that subset of javascript. If you want to go down that rabbit hole, then check out the repo: https://github.com/BlueBlazin/thislang If you want more posts on other javascript or computing related topics let me know on twitter: https://twitter.com/suicuneblue
  • An implementation of a subset of javascript in that subset
    1 project | /r/programming | 28 Jul 2021
    1 project | /r/javascript | 28 Jul 2021
  • An implementation of a subset of JavaScript in that subset of JavaScript
    1 project | news.ycombinator.com | 28 Jul 2021

What are some alternatives?

When comparing wat-compiler and thislang you can also consider the following projects:

bytenode - A minimalist bytecode compiler for Node.js

sia - Sia - Binary serialisation and deserialisation

mcscript - A programming language for Minecraft Vanilla

gc - Branch of the spec repo scoped to discussion of GC integration in WebAssembly

webassemblyjs - Toolchain for WebAssembly

website - AssemblyScript's website and documentation.

sablejs - 🏖️ The safer and faster ECMA5.1 interpreter written by JavaScript

cycle - cycle programming/scripting language

alternative-interpreters - List of alternative PHP nad JS interpreters and compilers