T
T
tikos2015-11-09 13:00:52
MongoDB
tikos, 2015-11-09 13:00:52

What are some good books on mean.js?

Tell me if there are any good books with examples on this stack? or something similar in Russian is desirable, but if not in Russian, English is also suitable. I need to create a site with registration so that only registered users can see certain pages, are there any articles or books that explain this in detail?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
Sergey, 2015-11-09
Protko @Fesor

Maybe it's enough to use mongodb as the main storage? This is a very bad idea.
In general, I recommend that you also stop trying to think of the technology stack as a whole. we learn everything separately.
first we study javascript (I somehow suspect that you don’t really know it)
- then ... we delve into javascript
- then we learn express.js, simultaneously comprehending the secret meaning of the SOLID abbreviation, studying OOP, a little functionality will be useful and all that.
- then we learn angularjs (you can swap express.js and angularjs in principle, this is not so important).
- Well, it's also a good idea to study databases (SQL). And leave the mongu for later, this thing behaves coolly as the main data storage only for writing logs, and in rare cases when you really need document-orientedness (very rare case). Well, to speed up selections from relational databases by storing aggregations, but for this there should be a need (many joins in selections, for example, very complex queries, then monga can be used as a first-level cache to store a denormalized copy of data to simplify these complex selections) .

K
Konstantin Kitmanov, 2015-11-09
@k12th

I don’t know books, but here’s what is:
https://github.com/madhums/node-express-mongoose-demo - mongo + express, blog with registration and login. Some solutions are controversial, but you can start and redo the bad parts as it becomes clear what is wrong
learn.mean.io - mean.io, ready stack + scaffolding tool + plugins
https://github.com/meanjs/ mean - similar to the previous one

P
Pavel Ivanov, 2015-11-10
@eastywest

Lots of good tutorials on scotch.io

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question