Ask HN: What's is your go to toolset for simple front end development?
291–295 of 295 posts
Re: Ask HN: What's is your go to toolset for simple front end development?
#292Ignore any recommendation of React, TypeScript, Vite, or Tailwind. Here are some recommendations that don't require NPM/Node. Pick a "classless" CSS library from a site like CSSBed[1]. These are kind of like Bootstrap, except you don't need to write any CSS or apply any CSS classes in your HTML for them to work. No tooling necessary; just include a tag in your HTML document. If you'd like to try something similar to…
Re: Ask HN: What's is your go to toolset for simple front end development?
#293Re: Ask HN: What's is your go to toolset for simple front end development?
#294Preact [0] + htm [1] Why? Preact is small, fast, and reasonably easy to use. But the main selling point for me was that, together with htm, I don't need any build system a la webpack. No node_modules folder. I just have to load one script (preact + htm bundled), define my components in plain javascript files and import them. Bliss for me. [0] https://preactjs.com/ [1] https://github.com/developit/htm Edit: Just read…
Highly recommend.
Re: Ask HN: What's is your go to toolset for simple front end development?
#295Please look at Svelte. It achieves straightforward abstractions and great speed by not having a virtual DOM. The syntax is also very pleasant.