Reputation: 35
I want to find some built-in modules of node js directory's like URL,Fs or http! Where is their root library?
Upvotes: 2
Views: 204
Reputation: 24581
I guess you won't be able to find it on your machine because they are most likely (for the sake of simplicity and performance) bundled inside of the Node executable.
However you can find the source code on the original Nodejs repo. All modules you are looking for are located here
Upvotes: 2