kabir shah

Results 77 comments of kabir shah

I'm still in the process of making updating attributes more efficient. If you look at other discussions in other issues, I'm also just taking a break from rewriting things for...

Hey @anonimusprogramus! Thanks for the feedback. 1. I've considered this and I think I'll for it since it'll be consistent with the `` component used internally. 2. I'm not sure...

Interesting. I personally think that it's more clear to have an explicit `if`/`else` with a `for` inside because `for`/`else` can be easily confused as a mistake.

I'm working on it haha — currently I'm working on the performance and removing any deoptimizations from v8 along with the documentation. After that, the only thing left is to...

Yup! I'm working on the CLI and boilerplates. I'll likely add webpack and rollup support as well, but those can progressively be released after v1's core modules are released.

I'm actually working on a new implementation of it now, and I have been tuning the compiler and executor to be as efficient as possible while also being asynchronous (similar...

Here are some preliminary performance results! Keep in mind that these ran on my machine, and the results will likely be different when made official. However, it is useful for...

Hey @anonimusprogramus, thanks for the suggestions! 1. I’m not sure if this will be beneficial for code clarity and convenience because it can be ambiguous (e.g. `@click` vs `@dblclick`). I...

Alright everyone, I finished most of the documentation! I still have to write examples and add more content to the landing page, but the bulk of the core documentation is...

@LeviSchuck It's the same thing as with JSX, but it is converted into `Moon.view.m` calls instead. It's explained in the [Under the Hood](https://moon-v1.surge.sh/doc/views.html#under-the-hood) section of the view guide. This compilation...