shadowtime2000
shadowtime2000
What complex compilation side effect?
Strange, seems to work for me @ije
I like how it uses more implicit sections like Marko instead of explicitly being separated into different parts. @ije Do you have an idea of what the compiler output may...
@ije I'd recommend you create the compiler and such in a different repo called `alef` or something to allow others to more easily use it without Aleph.
I like it's conciness though compare it with React ```jsx import { useState } from "react"; function Counter() { const [count, setCount] = useState(0); return ( Count: {count} setCount(count +...
> @shadowtime2000 or no fragment > > ```js-jsx > let count = 0; > > Count: {count}; > count++}>Increment! > ``` Wow, even better!
@ije I am not an expert on web performance and bundle size, but wouldn't having no runtime cause a big bundle size with stuff like reactivity, actually rendering stuff, and...
@iFwu What exactly do you mean by that? [The compiler I believe will already use **something** like what SolidJS does](https://github.com/alephjs/alef/issues/1#issuecomment-739128530), except I think in some cases it won't even do...
@ije After v0.3.0 will we start slowly dropping React support or something? Or will React still be supported?
Will we add a feature like automatic selection of components depending on usage of Alef or React? Like if we import `deno.land/x/aleph/link.ts`, will it automatically import a `deno.land/x/aleph/link/react.ts` or a...