After so many years I still can't convince myself to like JavaScript.
Today I tried to backup files from my laptop. Having B4X Objects folder is not a problem until I found GBs of node_modules (some are hidden) in my web projects folder that take up half size of the SSD.
After so many years I still can't convince myself to like JavaScript.
Today I tried to backup files from my laptop. Having B4X Objects folder is not a problem until I found GBs of node_modules (some are hidden) in my web projects folder that take up half size of the SSD.
I think most Javascript developers nowadays won't agree and don't want to accept the fact.
They never seen the good old days. Really.
Development really don't need to be so complex.
It is now messed up already. Because some "people" force us to use it.
My preferences are jQuery and HTMX.
I've never liked any of those frameworks (even jQuery is a bloated JavaScript framework IMHO). In BANano, we always try to use as much vanilla JavaScript and HTML as possible. Super lightweight and fast. And browser side only, I dislike node.js. Plenty of better backends. And I personally do like jetty (jServer) here in B4X. Nothing wrong with JavaScript itself, I like the language. It is the (ab)use of it.
Today I tried to backup files from my laptop. Having B4X Objects folder is not a problem until I found GBs of node_modules (some are hidden) in my web projects folder that take up half size of the SSD.
You don't have to (and should not) back up the node_modules folder. That can quickly and easily be recreated with "npm install" using your packages.json file whenever you would need to restore the project.
You don't have to (and should not) back up the node_modules folder. That can quickly and easily be recreated with "npm install" using your packages.json file whenever you would need to restore the project.