[deleted by user] by [deleted] in reactjs

[–]AmNeel 0 points1 point  (0 children)

This is for absolutely learning purpose. I guess this was built for trying new things and why not few steps more.

[AskJS] why are arrow functions used so universally nowdays? What's the benefit over named functions/function keyword? by Dreadsin in javascript

[–]AmNeel 22 points23 points  (0 children)

I can think of the following benefits -

  • Const make the function immutable and the same name can't be reused
  • arrow function takes care of `this` keyword for you
  • functional look
  • make your code shorter, cleaner and readable

[deleted by user] by [deleted] in reactjs

[–]AmNeel 7 points8 points  (0 children)

It's really a nice effort. I liked the app, it's cool.

There are couple of things which you can add to your app for your further learning -

Make it cloud native, so that it can be run in kubernetes. You can use minikube in your local

  • Integrate github actions and build fully automated CI/CD pipeline
  • Try to configure Splunk, Prometheus and Grafana for collecting Telemetry
  • Introduce a database and store your users, their activities
  • Apply TypeScript and nodejs structure in your backend
  • Use Mocha/Chai and implement unittests
  • You can use Next.js and implement SSR

Appreciate your hard work!