All Projects → TheLarkInn → Artsy Webpack Tour

TheLarkInn / Artsy Webpack Tour

Annotations on webpack source code in a pseudo-guided fashion.

Projects that are alternatives of or similar to Artsy Webpack Tour

Webpack Demo
webpack 4 config. demo ⚙️
Stars: ✭ 131 (-72.93%)
Mutual labels:  webpack, tutorial
Nice Front End Tutorial
🌍 Constantly updated front-end resources, tutorials, opinions(与时俱进版前端资源,教程和意见。)
Stars: ✭ 755 (+55.99%)
Mutual labels:  webpack, tutorial
You May Not Know Vuejs
Vuejs 从入门到精通系列文章
Stars: ✭ 263 (-45.66%)
Mutual labels:  webpack, tutorial
Generate Pages Tutorial
教你一步步从零构建 webpack 开发多页面环境
Stars: ✭ 63 (-86.98%)
Mutual labels:  webpack, tutorial
Cordova Create React App
A tutorial on how to set up a Cordova project using Create React App.
Stars: ✭ 167 (-65.5%)
Mutual labels:  webpack, tutorial
Webpack Book
From apprentice to master (CC BY-NC-ND)
Stars: ✭ 2,372 (+390.08%)
Mutual labels:  webpack, tutorial
Js Stack From Scratch
🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack.
Stars: ✭ 18,814 (+3787.19%)
Mutual labels:  webpack, tutorial
Ts Monorepo
Template for setting up a TypeScript monorepo
Stars: ✭ 459 (-5.17%)
Mutual labels:  webpack
Rpg Tutorial
The Unity Project for the RPG Tutorial Series!
Stars: ✭ 466 (-3.72%)
Mutual labels:  tutorial
Vue2 News
基于vue2 + vue-router + vuex 构建的一个新闻类单页面应用 —— 今日头条(移动端)
Stars: ✭ 462 (-4.55%)
Mutual labels:  webpack
Ue4 Tutorials
Collection of Unreal 4 Tutorials & Experiments.
Stars: ✭ 458 (-5.37%)
Mutual labels:  tutorial
Blog React
react + Ant Design + 支持 markdown 的博客前台展示
Stars: ✭ 463 (-4.34%)
Mutual labels:  webpack
Emacs 101 Beginner Survival Guide
Emacs 101 新手求生指南 - 一本讓你學 Emacs 不再學得靠北靠母的美好的新手求生指南
Stars: ✭ 472 (-2.48%)
Mutual labels:  tutorial
Spike
A modern static build tool, powered by webpack
Stars: ✭ 462 (-4.55%)
Mutual labels:  webpack
Elf
灵活可扩展的 HTML5 构建工具
Stars: ✭ 479 (-1.03%)
Mutual labels:  webpack
Cookiecutter Django Vue
Cookiecutter Django Vue is a template for Django-Vue projects.
Stars: ✭ 462 (-4.55%)
Mutual labels:  webpack
Chatty
A WhatsApp clone with React Native and Apollo (Tutorial)
Stars: ✭ 481 (-0.62%)
Mutual labels:  tutorial
Mailtolink
A quick and easy way to generate markup for mailto links without having to worry about the annoying formatting.
Stars: ✭ 478 (-1.24%)
Mutual labels:  webpack
S3 Plugin Webpack
Uploads files to s3 after complete
Stars: ✭ 464 (-4.13%)
Mutual labels:  webpack
Scrapple
A framework for creating semi-automatic web content extractors
Stars: ✭ 464 (-4.13%)
Mutual labels:  tutorial

artsy-webpack-tour

Annotations on webpack source code in a pseudo-guided fashion.

Just an Experiment

My goal as one of the maintainers for webpack is being able to help developers better understand how webpack works.

Demystify the tool so it helps you become more comfortable understanding how to use it and contributing to our source code and supporting packages.

Have a question?

The whole goal is to teach you how to use webpack, therefore please ask questions about the annotations you see inside of a github issue, and I will help you clarify any parts of what is seen below. There is NO wrong question.

Disclaimer: This may not match master!

I will likely not keep this up to date with every change in master on webpack/webpack. Rather, the purpose is to teach how to read and view the flow of the compilation lifecycle through webpack.

Table of Contents

  1. WebpackOptionsApply.js (List of plugins)
  2. WebpackOptionsApply.js (Explanation of Options)
  3. WebpackOptionsApply.js (Native modules)
  4. WebpackOptionsApply.js (Source Map Flavors)
  5. WebpackOptionsApply.js (More module madness!)
  6. WebpackOptionsApply.js (after plugins)
  7. Compiler.js (The Complier's Constructor)
  8. Compiler.js (The Complier's Execution Process)
  9. Compiler.js (The Complier's Execution Process Part 2)
  10. Compiler.js (Compilation prelude)
  11. Compilation.js (Welcome to the compilation)
  12. Compilation.js (Welcome to the compilation)
  13. Compilation.js
  14. Compilation.js (Building chains)
  15. NormalModuleFactory.js
  16. NormalModuleFactory.js
  17. NormalModuleFactory.js
  18. NormalModule.js
  19. Compilation.js (Back to compilation!)
  20. Compilation.js
  21. NormalModule.js
  22. NormalModule.js
  23. Compilation.js
  24. Compilation.js
  25. Compilation.js
  26. Compilation.js
  27. Compiler.js
  28. Compilation.js

Text Transcripts

To make this searchable, the text of each image has been transcribed. The title of each transcript anchors to the respective image. The transcripts are not made to be read through, rather they provide a tool to search out a specific section based on the commentary.

Help Wanted ❤😍💕❤😍💕❤😍💕❤😍💕❤😍

Version (webpack 2.2.1+ from master)

WebpackOptionsApply.js (List of plugins)

Step 1

  • "All plugins for options cases"
  • "These handle any module format"

WebpackOptionsApply.js (Explanation of Options)

Step 2

  • "getting opts from config"
  • "options target code"
  • "ES5 OOP (class W0A(?) extends 0A)"
  • "records"
  • "never used this before ¯\(ツ)/¯ "
  • "plugin system makes for extremely flexible feature development"

WebpackOptionsApply.js (Native modules)

Step 3

  • "Certain targets ship w/ other modules native to their deploy target like Electron"
  • "Similar to electron man but instead the "client" side. Thus diff externals"

WebpackOptionsApply.js (Source Map Flavors)

Step 4

  • "handling bad target values"
  • "all of this logic is for the 'devtool' prop. Allows for about 15-20 flavors of source maps"
  • "That was Sean's first ever PR!!!"

WebpackOptionsApply.js (More module madness!)

Step 5

  • "1. Single plugin for entry prop that is registered then"
  • "2. Executes via subsequent event"
  • "these plugins are grouped b/c they are all for module interop"
  • "these plugins all pertain to general optimizations including tree shaking"
  • "performance budgets code"
  • "in version 1, you had to do this yourself, now in v2 we handle it"

WebpackOptionsApply.js (after plugins)

Step 6

  • "nice for custom plugins that need to execute after all other default plugins"
  • "same as abover except after resolvers are created"
  • "saftey net incase someone nulls the input fs"
  • "(Also resolvers are created here. The factory comes from webpack/enhanced-resolve)"

Compiler.js (The Complier's Constructor)

Step 7

  • "The Compiler"
  • "yes, you can set your own custom file system"
  • "depreceate where the parser used to live"
  • "options from your config will end up here"
  • "Constructor"

Compiler.js (The Complier's Execution Process)

Step 8

  • "top lvl. function for entire webpack compliation process"
  • "timings for builds"
  • "here are all of the compiler's plugin events"
  • "all plugin events start with 'applyPlugins'"
  • "that means you can write custom plugins for any of these events"
  • "still track time till the end"

Compiler.js (The Complier's Execution Process Part 2)

Step 9

  • "next step in process (called inside of .run)"
  • "compilation is being created"
  • "create info to init compliation"
  • "the compilation plugins are firing"

Compiler.js (Compilation prelude)

Step 10

  • "we drive into the compilation next"
  • "used for long term hashing"
  • "lets you plugin to multiple child compilations vs. just the parent"
  • "we create modules from here"

Compilation.js (Welcome to the compilation)

Step 11

  • "plugin system"
  • "compiler thaty created it"
  • "Templates: bind the dep. graph to actual output code."
  • "the literal constructor for each dep."
  • "the shape of these templates vary by the type of dependency"

SingleEntryPlugin.js (Down the rabbit hole!)

Step 12

  • "The plugins start to take over!!"
  • "there's one of those dep. types I was talking about"
  • "that's the values from your entry property"
  • "back to the compilation to start walking the dependency graph"

Compilation.js

Step 13

  • "open empty slot for chunk about to be created"
  • "this is the module that will be resolved"
  • "it wasn't originated from another module, so set null"
  • "next fn to visit :)"

Compilation.js (Building chains)

Step 14

  • "track time to build chain"
  • "if 'bail:true', explode"
  • "else build anyways, show error after"
  • "safety net so deps are created properly"
  • "tip: depfactory.create = module"
  • "the dir path it came from"
  • "why an array? think nodes on a graph and dependencies are all adjacent nodes"
  • "a module is created: passed to callback!!"
  • "more timing"
  • "module officially added to compilation"
  • "Can also be null?"
  • "finish early if so"
  • "if a module is returned, use it and flag ready"
  • "I smell some recursion coming up!!!!"

NormalModuleFactory.js

Step 15

  • "see if there is a cache entry first"
  • "allows plugins to hijack and modify original 'request' obj."
  • "IE: NormalReplacementPlugin"
  • "cache"
  • "return resolved module"

NormalModuleFactory.js

Step 16

  • "this gets triggered from .creal"
  • "resolver event triggered & assigned"
  • "resolver is now going to ensure that the module you requested actually exists"
  • "don't error, skip"
  • "the result returned has everything needed to create module"
  • "will visit here next"
  • "more on this stuff later"
  • "the NormalModule instance is finally created"
  • "event for plugins to use"
  • "send module back to be added to chunk"

NormalModuleFactory.js

Step 17

  • "as you can see callback handles resolved requests"
  • "find & extract loaders being used in require()"
  • "new code for handling ident in loader opts. "
  • "Rules are normalized from configuration"
  • "find all pre & post loaders"
  • "paths to loaders are now resolved"
  • "always ordered post-normal-pre"

NormalModule.js

Step 18

  • "We are arriving here from the NormalModuleFactory"
  • "Parser instance"
  • "path the user specifies"
  • "path before query etc, are parsed"
  • "loaders to be applied"
  • "dependencies for context modules (superclass owns this.dependencies)"
  • "Normal Module constructor"
  • "extends module"

Compilation.js (Back to compilation!)

Step 19

  • "just finished time for the callback"
  • "this new Normal Module"
  • "fails if factory fails "
  • "timing/profiling"
  • "check cache and profile"
  • "next stop"
  • "next stop+1"
  • "find deps of module to go through resolve, vreate, build process cycle till graph is complete"

Compilation.js

Step 20

  • "Up until now, we know the following about our entry module:
    " • request path
    -loaders assigned and applied
    -source value in new"
  • "we venture back to the callback"
  • "collect mod, and dep diagnostics, report the to compilation as errors"
  • "last chance for plugins to modify the NormalModule obj"
  • "Same as above for warning separately"
  • "Let plugins handle post build events"
  • "stable(?) topological ped sort. see compareLocations.j"

NormalModule.js

Step 21

  • "timings"
  • "1. yet another callback 💕"
  • "Really important to remember that once inside this block, loaders have finally been applied"
  • "2. see if noParse is set if so, don't send to parser"
  • "3. pass raw src to parser along w/ options"
  • "4. if loaders are used correctly, the final loader will return js that acorn can parse, else FAIL! "

NormalModule.js

Step 22

  • "still here"
  • "a value ref. later for Loaders."
  • "1. What is loaderContext? The loader contect rep. is also known as the Loader API. It is a collection of utilities and stateful info about the current module being loaded"
  • "1a. loader context"
  • "Finally!! Loaders are ran!!"
  • "2. This fin actually comes from a supporting npm module: loader-runner."
  • "loaders can specify deps of their own declaratively"
  • "like css => background img"
  • "css-loader => url loader"
  • "2a. loader runner"
  • "3. can also return a buffer"
  • "4. if supported loader sends back src maps."
  • "5. remember last sketch? we send back to be parsed"

Compilation.js

Step 23

  • "We've already covered this tl;dr caching"
  • "finally back 2 levels up of callbacks"
  • "?=unresolved"
  • "oh hey no context switching <3"
  • "timing & profile"
  • "the next step in building the dep graph"
  • "right now at this point we only have 1 module"

Compilation.js

Step 24

"for now, lets consider this the entry module."
"the final call from addEntry fn"
"unflatten deps"
"deps. can come from some 'resourece' aka file/resolved location, this dedupes the loc. and groups by [[dep1, dep2],...[block],...]"
"hard to explain; 100% a module is a dep block dep block is hisgest super class that exists to rep. dep. relationships"
"time to add all deps & bfs graph traversal"
"OMG I JUST Figureed out DependenciesBlock fully just now!!!"
"So the whole point is that deps can be uniq bit from the same place"

Compilation.js

Step 25

  • "profiling"
  • "since we've gone to a signle entry dep to now an arrau pf deps we'll need to iterate through them"
  • "i can haz functional error handling?"
  • "by calling create"
  • "now we async iterate through all deps and process them w/ their dep factory"
  • "warnings & error handlers"
  • "Already learned this fun stuff"
  • "tie deps back to origin modules (2 way ref.)"
  • "profile pt1"
  • "end of 1 way traversal"
  • "cache checks"

Compilation.js

Step 26

  • "some profiling + ?"
  • "recursion begins"
  • "remember we are still inside async factory iterator also."
  • "recurse the graph!"
  • "we can actually go back to original event"
  • "finally traversal is complete"

Compiler.js

Step 27

  • "Brain Recapitulation!!!!"
  • "We just spent like 5 hours in Compilation, but the graph is done building and now we are back"
  • "this is where we last left off"
  • "finish & seal are next to be called..."

Compilation.js

Step 28

  • "lets dive in to here"
  • "warnings & errors"
  • "triggered here yay!"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].