Why hapi.js is special? [closed] - javascript

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I am learning hapi.js, A framework of node.js. I gone through some tutorials but i didn't get the exact specialty of hapi compared to other frameworks. I want to know why hapi.js is special when compared to other frameworks of node.js. Could anyone help me ?

hapi is special because of many reasons but in particular it is modular and promotes configuration over code approach which helps when managing larger complex business applications. The modular plugin system enables specific logic to be separated to help with development especially in teams.

Related

Is socketio good to use in production website [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 months ago.
Improve this question
I want to do some real-time operations in my backend. In the past, I used the pusher for real-time operations. But its cost is huge. So, I am thinking about using the socket IO itself. Before using it, I thought about asking for it in the stackoverflow community. So, what do you guys suggest? Is it suitable for use on a production server?
Socket.io is already used in production by many big companies for products including Trello, Microsoft Office, Yammer, and Zendesk.
As #Tintin said, it's also very popular on GitHub and NPM.
Socket.io on Github has:
56.2k stars
1.6k watching
10k forks
On npm, it shows more than 4.5 million weekly downloads.
So yeah, I would say a pretty solid choice for production, provided, as with any software, you use it wisely.

Why Nest.js claims to be "progressive"? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
Just on the first page of Nest, they proudly claim :
A progressive Node.js framework for building efficient, reliable and scalable server-side applications.
The only word I can't grasp is progressive and what that can means in the programming world.
Can anyone explain the concept to me?
According to a Dictionary on the web progressive means happening or developing gradually or in stages.
What I infer from their website about them is "NestJs Takes advantage of latest JavaScript features, bringing design patterns and mature solutions to Node.js world."
and indeed they are doing so by making it more extensible and versatile.
Well, this has nothing to do with PWA(Progressive Web App) Hope this answers your question.

best Way to learn javascript is through a book or Paid course (i already have some basics knowledge about Programming)? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
best Way to learn javascript is through a book or Paid course (i already have some basics knowledge about Programming) ?
There are some Udemy Courses. You can learn from them.. There is a 7/8 hours crash course of JavaScript in youtube which is made by CleverProgrammer (https://youtu.be/Qqx_wzMmFeA). And also see some basics of JS from Mosh. You can find them in youtube. And yes,You may follow a course book.But to me, it's better to learn from websites(W3School.com) and tutotrial(Youtube)

Is it necessary to use express for node for moderate apps [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
If i have a project with about 30 or 40 routes!?
Is it easy to handle cookies andthe auth without express !?
How % of devs using express compared to bare bones node (For performance and simplicity)
Express is a very good Nodejs framework and most used so it's the one selected by most project.
It already contain a lot's of documentation and package who are already configured to work well with express so it can help you to find more relative project or developer if you try to hire lot's of people.
But Express is not the only one ! And you can choose another one based on your needs, check out Koa, it's an express-lite

Good reasons to separate REST API from authentication server? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
This is a very basic and maybe quite general question, but I think it is appropriate to at least ask it here. I have a React front-end and following a tutorial I have also created a node.js backend for authenticating users.
I now want to add a REST API -would I ideally integrate it in the same node server that I already wrote, or are there good reasons to separate my REST API and my Authentication into two different node.js applications?

Categories

Resources