Are you Developer doing FrontEnd? Are you using Webpack? If any answer is No, you can skip this post. But if Yes, are you using aliases in your webpack configuration? If Yes, you can leave this page. If No, then let me ask you a question: Why not? Problem Let’s start with the problem here. In a large scale application where the codebase is huge and you often see imports like following: Gallery { getUserPrefefences } import from '../../../commons/components/Gallery' import from '../../../utils/storage/browser/user' The or relative imports are the concern here. ../ For a small codebase, these are fine but for a large codebase where the developers work in parallel and move things around frequently, this introduces the following problems: Need to mentally traverse the directorySpend time in fixing the imported modules not found And for the new developers in the teams, this problem becomes 10 folds Solution As you have read the title of the article, this problem can be solved by using aliases in the repack config. How does it work? To explain the usage of aliases; consider the following directory structure: webpack.config.js src - commons - components - Gallery - Gallery.js - User - User.js - Avatar - Avatar.js - Button - Button.js - pages - components - Layout - Wide.js - Grid - Page - Messages.js - Profile.js - Dashboard.js - Login.js - Register.js - utils - url For the above structure, consider following scenarios: Accessing the some component in the would look like following: Dashboard.js React WideLayout Gallery import from 'react' import from './components/Layout/Wide' import from '../commons/components/Gallery/Gallery' Now we try to rearrange the tree structure and put the gallery Component in the directory: <project-root>/src/pages/components/commons/Gallery And not we have to refactor the above code to keep working. As our project structure taken for example is small, so it is easy to remember the Component rearrange in code as well: import React from 'react' import WideLayout from './components/Layout/Wide' - import Gallery from '../commons/components/Gallery/Gallery' + import Gallery from './components/commons/Gallery/Gallery' Now let’s try to add a few lines to our web pack config: .exports = { resolve: { : { : path.resolve(__dirname, ), : path.resolve(__dirname, ) } } }; module //... alias Components 'src/commons/components/' Pages 'src/pages/' What above lines in your web pack configuration will do is to enable you to write the previous component in the following manner: React WideLayout Gallery import from 'react' import from 'Pages/components/Layout/Wide' import from 'Components/Gallery/Gallery' Hence, now you exactly know where these components are loaded from, provided that you know about the aliases in your config. And then refactoring the components will also be less painful. You can read more about the Aliases in the webpack configuration here: https://webpack.js.org/configuration/resolve/#resolvealias Conclusion Using Aliases is a way to speed up the development; though not in all cases: Small projects don't need it Bigger Teams need to agree on Aliases Bigger projects should include the list of Aliases in the ReadMe files What do you guys think about the Aliases? Would you use them? Why or Why not? Let me know what do you think about this article through comments 💬 or on Twitter at and @patel_pankaj_ @time2hack If you find this article helpful, please share it with others 🗣; subscribe for the new posts and see you the next time.