django and node.js

Asked 2 years ago, Updated 2 years ago, 61 views

After analyzing data with Python, I wanted to study server I'm thinking about what to do. Is django a framework and node.js a server language? I want to create a social commerce site with a lot of traffic, so I wonder which one to choose.

I'm sorry it's such a rudimentary question

django node.js server

2022-09-22 21:39

2 Answers

django is a web framework made of Python

Node.js is an event processing I/O framework that runs on the V8 engine, but it is usually used as a web server.

You can create a site for both, but node.js itself is a bit of a shovel, and it's easier to use a framework like express, hapi, and koa.

It doesn't matter if you create a social commerce site for either of them

However, if there is a lot of traffic, you should pay a lot of attention to caching and DB optimization.

I have studied and used both

Django is actually kind of hard. There are not many Korean documents, but there is a running curve, so it is a little hard at first. There are many things to know. But if you learn it properly and design it well, there's nothing better than that.

It's very convenient and good if djangoorm models well.

In addition, if you register as Admin function, the administrator tool automatically comes up, so you can CRUD the model comfortably there.

Node.js is a short experience since I just came across node.js, but if you mix express and npm libraries, it's like a free lunch. It's so easy that I'm nervous.

If it was django, it would be a time to get used to it, but I'm already thinking of making a website.

First of all, the miscellaneous talk has been prolonged, but I recommend it as below

If you are confident in the web and know enough to fix problems quickly, node.js

Or I recommend Django.

Django goes more than half the way just by following him


2022-09-22 21:39

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.