|
|
|
|
|
by abdusco
1656 days ago
|
|
The difference between Django and Express.js is that one is a fully-fledged web application framework, while the other is a micro framework that just gives you a simple request -> response abstraction over `http.createServer`. I find Flask is more comparable to Express.js in that regard. Need auth? You need to: 1. Install a lib for persistence 2. Set up cookie sessions, or install another lib for JWT 3. Set up auth middleware 4. Prepare login/register/forgot pass views and flows which are almost the same steps you need to take in Express.js. |
|