Ask HN: What's is your go to toolset for simple front end development?
41–50 of 295 posts
Re: Ask HN: What's is your go to toolset for simple front end development?
#42 body {font-family:sans-serif;}
Beyond that, all other CSS is optional imho.And you don't need JavaScript to trigger back-end events, as a simple link will work just as nicely.
Re: Ask HN: What's is your go to toolset for simple front end development?
#43I just read that you didn't want to troubleshoot html, css and js, so my goto toolkit for simple UIs might not fit your bill, but hear me out :) At work, when I do internal tools, they are usually well received. They also pass just below the threshold of having their looks be judged. They're not ugly, because they're almost not there. Very plain HTML: HEAD+TITLE, H1, H2, UL, OL, A, IMG, INPUT, BR, TABLE, P Javascript…
Re: Ask HN: What's is your go to toolset for simple front end development?
#44Why? 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.
[1] https://github.com/developit/htm
Edit: Just read that you want drag & drop style UI building, so this might not be for you.
Re: Ask HN: What's is your go to toolset for simple front end development?
#45https://tailwindui.com/ - lots of pre-made templates using tailwind css. Some are free, but the more advanced ones require payment.
Re: Ask HN: What's is your go to toolset for simple front end development?
#46Re: Ask HN: What's is your go to toolset for simple front end development?
#47TailwindUI ?
Re: Ask HN: What's is your go to toolset for simple front end development?
#48Re: Ask HN: What's is your go to toolset for simple front end development?
#49Re: Ask HN: What's is your go to toolset for simple front end development?
#50React with create-react-app [0] and Netlify for deployment, github as git repo. This way you can have a hello world app that has a full CI pipeline in ~30 mins. [0] https://reactjs.org/docs/create-a-new-react-app.html#create-...
It outputs create-react-app projects with no extra runtime components or other limitations. You can deploy on Netlify or do whatever you like with the code.