Relative Content

Tag Archive for node.jsexpress

How many nodejs app instances can I run on this server

I have developed a nodejs api using express, mysql and prisma orm. Traffic will be very low. Around 100 requests an hour at peak usage. Most api calls involve a call to the db. Data returned will also be small. Maybe 10 to 20 rows at a time. The database will have around 30 tables, most of which will have very limited number of rows. Again, around 10 to 20 rows. There is however a transaction table that could over time become relatively big, lets say 3000 rows in a year.

How many nodejs app instances can I run on this server

I have developed a nodejs api using express, mysql and prisma orm. Traffic will be very low. Around 100 requests an hour at peak usage. Most api calls involve a call to the db. Data returned will also be small. Maybe 10 to 20 rows at a time. The database will have around 30 tables, most of which will have very limited number of rows. Again, around 10 to 20 rows. There is however a transaction table that could over time become relatively big, lets say 3000 rows in a year.

How many nodejs app instances can I run on this server

I have developed a nodejs api using express, mysql and prisma orm. Traffic will be very low. Around 100 requests an hour at peak usage. Most api calls involve a call to the db. Data returned will also be small. Maybe 10 to 20 rows at a time. The database will have around 30 tables, most of which will have very limited number of rows. Again, around 10 to 20 rows. There is however a transaction table that could over time become relatively big, lets say 3000 rows in a year.

How many nodejs app instances can I run on this server

I have developed a nodejs api using express, mysql and prisma orm. Traffic will be very low. Around 100 requests an hour at peak usage. Most api calls involve a call to the db. Data returned will also be small. Maybe 10 to 20 rows at a time. The database will have around 30 tables, most of which will have very limited number of rows. Again, around 10 to 20 rows. There is however a transaction table that could over time become relatively big, lets say 3000 rows in a year.

req.body is being empty

req.body is being empty for only /api/login and /api/signup but working fine for other routes.Checked everything, and everything looks good but still this. already used parsers as other routes are working fine. I have sent the req to /api/login from frontend using axios but it is returning missing fields.