Needs advice
on
DjangoDjangoNestJSNestJS
and
Spring FrameworkSpring Framework

Hi there, I'm deciding the technology to use in my project.

I need to build software that has:

  • Login
  • Register
  • Main View (access to a user account, News, General Info, Business hours, software, and parts section).
  • Account Preferences.
  • Web Shop for Parts (Support, Download Sections, Ticket System).

The most critical functionality is a WebSocket that connects between a car that sends real-time data through serial communication, and a server performs diagnosis on the car and sends the results back to the user.

READ LESS
9 upvotes·573.6K views
Replies (4)
Software Engineer at AppTec GmbH·
Recommends
on
NestJS

I would also go with NestJS. I would say Java is unnecessarily complicated and limited. And Python is not typed. TypeScript is powerful and typed and goes well with NestJS, especially using RxJS.

Django does not enforce backend-frontend separation, which probably was a good thing back in the days, but not anymore. But on the other hand enforces the project structure to you, which I don't like.

READ MORE
5 upvotes·1 comment·212K views
Oziel Perez
Oziel Perez
·
November 16th 2022 at 4:52PM

The work around would be to use Django Rest Framework, but even then, I don't think Python is the best tool for web sockets/real-time stuff.

·
Reply
Recommends
on
NestJS

You can use NestJs with microservice architecture.where you can also use socket.io for web socket. you can use MongoDB (For real-time data) & MySQL for customer management.if you don't want to implement websocket.you can use firebase.it gives realtime database & firestore.which can handle millions of connections and scale it up.

READ MORE
10 upvotes·2 comments·571.9K views
juan9222
juan9222
·
July 30th 2020 at 8:34AM

Thank you, I thought the same as you. NestJS makes it easy for you the use of best practices, clean architecture, and design patterns for your applications.

·
Reply
Oziel Perez
Oziel Perez
·
November 16th 2022 at 4:53PM

Agreed. I haven't used Python for web socket stuff, but in a similar case, I tried using Server-Sent Events, and I thought the experience there was not very good. There was one library that you could use for such cases but it was overkill because it forced you to use Redis. You could get by with Nest.js for sure. Some people prefer to use PostgreSQL if you want higher performance, but unless you're dealing with thousands of customers all the time, doesn't really matter that much. If you're feeling more adventurous, there's talk of a new database called SurrealDB which supports both SQL and NoSQL schemas and has a direct REST API.

·
Reply
View all (4)
Avatar of Mohammad-Ali A'râbi

Mohammad-Ali A'râbi

Software Engineer at AppTec GmbH