Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

I was configuring webpack configuration with my own instead of copy things and paste , I just need to understand each and every line in Webpack configuration file.

What is the use of the first line require('path') in webpack Configuration File.

const path = require('path');
 module.exports = {
     entry: './src/app.js',
     output: {
         path: path.resolve(__dirname, 'bin'),
         filename: 'app.bundle.js'

https://webpack.github.io/docs/usage.html I am following the above link to getting things started

in the module.exports , path has been used but i did not get any idea in the usage of the path. Please let me know the usage. So i can start further.

https://nodejs.org/api/path.html

require is Node.js global function that allows you to extract contents from module.exports object inside some file.

Unlike regular NPM modules, you don't need to install it because it's already inside Node.js

In your example you use path.resolve method which creates proper string representing path to your file.

Straight from docs:

The path.resolve() method resolves a sequence of paths or path segments into an absolute path.

https://nodejs.org/api/path.html#path_path_resolve_paths

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.