Nima Ra
Nima Ra

Reputation: 35

How I can find built-in modules directory's of node?

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

Answers (1)

smnbbrv
smnbbrv

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

Related Questions