High quality Node.js structure

I am new to the world of Node.js. But I tried some Node.js frameworks, such as Express.js, unfortunately, they did not meet my requirements.

Since I was born in PHP, I was looking for some structure similar to Symfony, CodeIgnitier, CakePHP, etc.

Basically, I'm not looking for a low-level structure that allows "only" routing, MVC support, and more or less everything.

What I would like to see in a strong framework for web applications is something like support for a template system, simple processing of HTML forms, user authentication, authoring, sessions, caching, emails, some low-level ORMs, etc. . (basically these are functions that have high-level PHP frameworks)

I know Node.js is a new technology, but is there any framework that goes that way? Do you know some releases? Or some groups (forums) where ppl creates and discusses something like this?

thank

+3
source share
3 answers

I will send you Flatiron because it is a great framework, but I think you're looking for (I dare say)?) Tower.js . However, I highly recommend choosing from the large npm module database the modules that best suit your needs. Flatiron is great for this because it consists of a set of modules, each of which does something specific, and binds these modules in a module flatiron.

+1
source

Node.js 'full-stack nodeframeworks. Symfony ( ), Danf ( constrast Symfony , ).

+1

Some of the features you mentioned are actually in express.js. I don’t think there are fully functional structures like you have in PHP / Ruby / Python. The good news is that Node.js is Javascript, and it is a really simple language. Therefore, if you need additional things on top of express.js, it should not be difficult to do this. Not every developer likes this, but I like to write their own small modules to solve certain problems.

0
source

All Articles