Suggestion of 10 (TEN) crucial items for developing web application 2020
Could someone suggest the best tool/framework for small or medium size or enterprise web application for 2020 - 10 to 1000 users and millions of records
#1 - Best Unit test case framework
#2 - Best NoSQL Database
#3 - Best Relation Database
#4 - Best Synchronous Framework
#5 - Best Asychronous Framework
#6 - Best Front-End Framework (Active Development, Max Support)
#7 - Best Debugging Tool
#8 - Best Performance Tuning Tool
#9 - Best Code Coverage Tool
#10 - Best DB migration tool (ex: flyway)
Thanks.
zrn
is it good idea to do hamburger navigation with details tag?
details tag is basically a hamburger already, but i cant find anyone who use it like that.
Is it bad for accessibility?
using display: none; would allow to hide ul or details when needed.
<nav>
<ul>
<li><a href="/html/">HTML</a></li>
<li><a href="/css/">CSS</a></li>
<li><a href="/js/">JavaScript</a></li>
</ul>
<details>
<summary></summary>
<a href="/html/">HTML</a>
<a href="/css/">CSS</a>
<a href="/js/">JavaScript</a>
</details>
</nav>
or maybe even keep only open details and hide summary button in fullscreen version
Hi All, I started Learning React.js half a year ago.
during the quarantine i started a new project building a YouTube clone.
I learn a lot from this project and i am proud of it.
If you find this project interesting show your love by staring, forking, and creating issues.
github repo: https://github.com/larbisahli/youtube-clone-spa
Working Prototype: https://youtube-klonos.netlify.app
Note: you will need a YouTube v3 api key (you can get it from google api).
This junior will love to hear your opinion.
fachiquito
Hi, i'm havin a litle trouble to confing a simple contact form on a single page website that i'm codin. I have all the code on a condepen page, can any one take a look and helpme config this?fachiquito
Here you see a js file its actually a php that i try to code
Hi everyone!
I've finished the first version of my Rockpack project.
It provides you to create a React application skeleton in the create-react-app style.
The goal usage is to reduce the time to setup the project from weeks to 5 minutes.
Consists of modules: compiler (webpack + the best loaders, plugins, best practices), codestyle (ESLint + The best rules), tester (Jest + optimizations, extensions) and etc.
The main difference from create-react-app is support for different types of applications:
Updating and extending webpack.config without "eject".
LESS/CSS/SCSS Modules
TS or Babel to choose from.
I hope this will be useful for your work. Check it out, please!
Hi can anyone me help how to align this flex-wrap div, its always breaking into another line when i tried to wrap this divs.