You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vue-server-renderer currently uses a couple of lodash modules, specifically:
lodash.template lodash.uniq
lodash is in maintenance mode, and submodules like lodash.template are rarely updated.
Pulling in lodash.template also pulls several deep lodash internals as transitive dependencies (e.g., lodash._reinterpolate, lodash._basevalues).
es-toolkit is a modern, ESM-friendly utility library offering equivalents like template() and unique().
It is actively maintained, small in scope, and avoids deep dependency chains.
What does the proposed API look like?
The actual runtime API for users does not change — this is an internal refactor.