Code Monkey home page Code Monkey logo

artsy-webpack-tour's Introduction

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)

Step 1

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

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"

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"

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!!!"

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"

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)"

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"

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"

Step 9

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

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"

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"

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"

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 :)"

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!!!!"

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"

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"

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"

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"

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"

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"

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! "

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"

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"

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"

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"

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"

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..."

Step 28

  • "lets dive in to here"
  • "warnings & errors"
  • "triggered here yay!"

artsy-webpack-tour's People

Contributors

howdy39 avatar mesaugat avatar sapegin avatar thecog19 avatar thelarkinn avatar troesler95 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

artsy-webpack-tour's Issues

Requests for Annotated Files

If anyone would like to request specific files as annotations I am happy to do so. You can leave requests here.

Suggestion: Add searchable text & linkable headings

Hi @TheLarkInn!
I'm enjoying the repo - great to see an explanation of the inner workings of Webpack!

I'm wondering if there's any value in transcribing the annotations to text below each image?
It could just add a lot of extra noise but would make the readme searchable (using find etc.)

Along the same lines - a heading or some sort of quick, linkable reference could be helpful for sharing direct links to particular sections or images.

I just wanted to throw these ideas out to you, I'm not sure much they would help or hinder other folks reading the readme :)

When does webpack generate childComplier assets?

I was reading extract-text-webpack-plugin source code recently.And i saw that the plugin start a new complier for generate css file.But i couldn't find where does the file generated.I know that assets can be generated use complication.assets[filename]=xxx, but i couldn't find the code like this from extract-text-webpack-plugin source code.So I'm confused about this part...Could you explain this part for me?

BFS or ... DFS ?

In the image annotated "time to add all deps & bfs graph traversal" and the images right underneath, webpack seems to be doing a DFS because it's just relying on plain old recursion without keeping some sort of a queue in addModuleDependencies(). The annotation says otherwise.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.