Loader and Plugins

Source: Loader and plugin!

Another Article: Webpack Loaders and Plugins!

Loaders

Loaders work at the individual file level during or before the bundle is generated.

Plugins

Plugins work at bundle or chunk level and usually work at the end of the bundler generation process. Plugins can also modify how the bundles themselves are created. Plugins have more powerful control than loaders.

Just for an example you can clearly see in below image where loaders are working and where plugins are working.

Another example of Loaders and Plugins