1

How to get the name of the Node.js module from inside the module itself during loading?

//mymodule.js
console.log(GET_MODULE_FULL_PATH_NAME())

//prog.js

require('/full/path/module')
   OR
require('./module')
   OR
require('module.js')

1 Answer 1

3

Use __filename. That will get you what you want.

http://nodejs.org/api/globals.html#globals_filename

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.