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·577.7K views
Replies (4)
NodeJS Intern at CartRabbit·
Recommends
on
Node.js

Just a simple Node.JS app with templating engine for UI can be sufficient for what you want to achieve.

READ MORE
3 upvotes·572.1K views
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·576K 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 Amit Parameshwar

Amit Parameshwar

NodeJS Intern at CartRabbit