Skip to content

Instantly share code, notes, and snippets.

@FL4TLiN3
Created May 15, 2013 08:59
Show Gist options
  • Save FL4TLiN3/5582586 to your computer and use it in GitHub Desktop.
Save FL4TLiN3/5582586 to your computer and use it in GitHub Desktop.
呼び出し元モジュールは結構忘れる。
#!/usr/bin/env node
var path = require('path');
// Current Working Directory
console.log(process.cwd());
// dirname of this file
console.log(__dirname);
// filename of this file
console.log(__filename);
// caller module
console.log(require.main.filename);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment