Difference Between "import { Pick } From 'lodash';" And "import Pick From 'lodash/pick';"
Solution 1:
The lodash
module is a roll-up module that imports and reexports from its various individual modules like lodash/pick
.
So:
import { pick } from 'lodash';
loads the fulllodash
module and then only imports the one function from it.import pick from 'lodash/pick';
loads only thelodash/pick
module and gets its default export (pick
).
How does do they each affect the bundle size?
That depends on the degree to which your bundler can do tree-shaking. If pick
is the only part of lodash you use, and your bundler can figure that out, it should be about the same. But bundlers vary in terms of the degree and quality of tree-shaking they do.
Do they import exactly the same parts of lodash?
The import the same thing to your module, but in very different ways (see above).
Are they comparatively fast?
In terms of runtime performance, they should be roughly similar, certainly nothing to worry about.
In terms of bundling time, the more work your bundler has to do, the longer it will take; that includes figuring out that although you're importing lodash
, you only use pick
.
If you really only need pick
, the second form should make for less work for the bundler.
But in terms of size, etc., you should probably experiment with your specific setup and your overall code to figure out which is better for you.
Post a Comment for "Difference Between "import { Pick } From 'lodash';" And "import Pick From 'lodash/pick';""