6 ms·
So what was weird exactly? react is not JS. nextjs is not js..... same way spring boot is not java. JS is the way it is. Most of it complainants has issues as t
by jsdeveloper 3y ago
So what was weird exactly?
react is not JS. nextjs is not js..... same way spring boot is not java.
JS is the way it is. Most of it complainants has issues as they usually come from synchronose language and when JS (its true power) uses its async nature, they can't comprehend it and think its weird, why would it do so.
If your rational is that its slow, you should probably use assembly to write the most optimal code. If you want a high level language then JS brings most paradigm than competing languages. If you argue to want all features high level, low level and speed go for C++.
- techaqua 3y ago> nextjs is not js..... same way spring boot is not java does spring boot bring it's own dsl and compiler?
- ElectricalUnion 3y agoKinda, as usual within Javaland, there's a lot of reflection involved into making annotated interfaces (a kinda of standard Java reasonably limited dsl capabilities) pop up as singletrons connecting to your database/OLAP/LDAP/REST-endpoints/websocket-clients/whatever. Same thing for serialization things, you define interfaces, the actual classes often just pop into existence by generated bytecode. It's also not unknown to bring JSP/EL (literally requires a Java Compiler embedded in your server to compile servlet objects for you on the fly) or some other, on purpose less fully featured template things with their own DSLs like Thymeleaf to do the same job.