What would be a good project for learning node.js

Everyone is talking about NodeJS , therefore, although I will consider it by creating a useful project, I cannot really think of something useful to create on NodeJS, which fully demonstrates its capabilities.

Do you have a good idea?

+6
source share
4 answers

If these are web applications that you are interested in creating, and if you do not mind following the training course, I recommend the DailyJS daily series of seminars on creating a notebook-like web application from start to finish on Node: http://dailyjs.com /tags.html#lmawa .

It covers all the basics, including databases, middleware, templates, and testing.

+8
source share

Build your web infrastructure like everyone else.;)

But seriously, this can lead you to network programming, file I / O and HTTP at a level that is usually not achieved using another infrastructure (practical use is much better than reading another's code).

With Node, it can no longer be "Create a blog", but rather, "Create a framework that creates a blog."

+4
source share

Just any site should do. For example, you can blog with NodeJS and MongoDB.

+2
source share

I can’t think of anything useful to build NodeJS that fully demonstrates its capabilities.

Node.js is probably hardly used to create a single useful project or module that demonstrates all its features, because there are many areas to which it can be applied. I would say that you should choose the area that interests you the most so that you do not lose your enthusiasm, and ultimately you can become an expert in this particular field.

+1
source share

All Articles