+ 10
How to learn Node.js efficiently
I am learning Node.js now, but I found out my learning speed is slow. This is my first time to go into backend. My plan is below: Learn basics concept of Node.js Learn Express to build a RESTful api for a website for save some business data. I basically know the Non-block IO, Event loop, callback, router, middleware and basics of JS. But I am not used to developing web at all. How would you Guys give some advice for me to learn more efficiently ? Thanks!
5 Respostas
+ 14
https://www.sololearn.com/learn/9660/?ref=app
+ 9
For me install node for your IDE
I use VSCode
In your terminal: node then tab twice to get all possible modules/functions/components/topics go through each one, one by one.
+ 4
Goto https://glitch.com/ register a free account, from there you can develop your express or node codes from backend to frontend. It also comes with sqlite installed for database crud operation ideally for rest api development.
Code collaboration can be done too with your teammates, with tons of sample codes the community has developed.
Install any npm packages as you wish by just searching the packages.
Immediately run any github repos by just linking its git link.
You even can create frontend app from Sololearn code playground with rest api from Glitch express apps.
+ 3