ev on Nostr: I've been shopping around for JavaScript frameworks to learn, after years of writing ...
I've been shopping around for JavaScript frameworks to learn, after years of writing programs in hscrpt: https://github.com/dominictarr/hscrpt
I went to a coding meetup and polled everyone I talked to and it was suggested that I check out, in no particular order:
+ React
+ Preact
+ Nextjs
+ Vue
+ Angular
+ Svelte
I messed around with Preact and I discovered that you can create DOM objects in almost the same syntax I'm used to using in hscrpt, for example:
```
const paragraph = h('p', null, 'Hello World')
render(paragraph, document.body)
```
Which I thought was kind of cool, because I can port my hscrpt knowledge indirectly into Preact! And i don't have to code using xml if I don't want to.
I went to a coding meetup and polled everyone I talked to and it was suggested that I check out, in no particular order:
+ React
+ Preact
+ Nextjs
+ Vue
+ Angular
+ Svelte
I messed around with Preact and I discovered that you can create DOM objects in almost the same syntax I'm used to using in hscrpt, for example:
```
const paragraph = h('p', null, 'Hello World')
render(paragraph, document.body)
```
Which I thought was kind of cool, because I can port my hscrpt knowledge indirectly into Preact! And i don't have to code using xml if I don't want to.