-3

I plan to build Web application for which the structure is:

enter image description here

My questions are:

  1. Is that correct structure in the commercial?
  2. I plan that FrameWork of Frontend is express(nodejs) at first, but I try to change to django or flask because nodejs is my first use. I wonder if react can be used in this combination.
Cœur
  • 37,241
  • 25
  • 195
  • 267
Maibi
  • 45
  • 1
  • 7
  • Which functionality do you need from the backend? – Yossi Jun 20 '18 at 13:58
  • all functionalities login, user control, json data because I understand that the back-end server only delivers json data, right? – Maibi Jun 20 '18 at 14:01

1 Answers1

1

How about using firebase? You can handle authorization, store and retrieve data. I believe that it will be much easier than any other alternative.

This great article will enable you to implement authentication in few hours. Handling data is also simple, I would use redux as well...

Yossi
  • 5,577
  • 7
  • 41
  • 76
  • Do you mean to use the firebase as a backend? In fact, since I am completely naive, to say the basics, does the term "frontend" refer to a static web server? – Maibi Jun 20 '18 at 14:28
  • No. Front end refers to the web client which runs in the browser. A web server is one example for a back-end. Firebase can provide you the back-end services that i mentioned, without the bother of setting up and running a server. Highly recommended. – Yossi Jun 20 '18 at 14:33
  • Read the 1st paragrpah of the following article: https://hackernoon.com/the-easiest-way-by-far-to-build-a-real-react-firebase-web-app-5dc6fa6f1b61 – Yossi Jun 20 '18 at 14:36
  • Pleasure. I hope that you didn't miss my recommendation to consider redux as well. – Yossi Jun 21 '18 at 04:26