Get Module Version in Node.js

• 1 min read

Here’s how to extract the version number from your package.json file. I use this to quickly verify that my current Nodejitsu snapshot is up to date.

// Require package.json like a regular module
var packageInfo = require('./package.json');

// Do something with the version
console.log('VERSION: ' + packageInfo.version);

Happy coding.

If you enjoyed this tutorial, please consider sponsoring my work on GitHub ðŸĪ—

Be the first to cheers
Now look what you've done 🌋
Stop clicking and run for your life! ðŸ˜ą
Uh oh, I don't think the system can't handle it! ðŸ”Ĩ
Stop it, you're too kind 😄
Thanks for the love! âĪïļ
Thanks, glad you enjoyed it! Care to share?
Hacker News Reddit

×

Recommended Posts ✍ðŸŧ

See All »
• 3 min read
🚅 Next Stop, Yaak
Read Post »
• 3 min read
⛰ïļ 2022 Recap: Getting Physical
Read Post »
• 5 min read
ðŸŠī Home-Grown Web Analytics
Read Post »