DEV Community

Discussion on: Let's create a URL expander with Node.JS

Collapse
 
joeattardi profile image
Joe Attardi

Couple of quick observations:

  • The request module has been deprecated for some time, new projects should not be using it, this sets a bad example.

  • I think your articles like this would be better if you would give an overview of the approach to the problem rather than diving right in to the code. Especially for newer developers who may not be able to follow all the logic.

Collapse
 
0shuvo0 profile image
Shuvo

Thanks
But about the 1st point
Deprecated just means it no longer maintained, its okay to still use it

Collapse
 
Sloan, the sloth mascot
Comment deleted
 
thatsbrandon profile image
Brandon J

I wrote a small networking class for my NodeJS project the other week. I used https.request, worked like a charm & wasn't that difficult to use!