[nodejs] Re: Module caching Caveats

2012-11-01 Thread Bradley Meck
Posix has the ability to have hard links on disk where they have the same inode but different paths, unsure if this affects Window's junctions in the same way though. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines

Re: [nodejs] Re: Module caching Caveats

2012-11-01 Thread Mike Hatalski
Many thanks, especially for pointing out fs.realpath(). Interesting because of realpath, different symlinked files resolve to the same absolute pathname, and thus to the same module in the module cache. On Thu, Nov 1, 2012 at 1:19 PM, Isaac Schlueter i...@izs.me wrote: Mike, Depending on