+1 vote
in JavaScript by
Differentiating Concat / Minification / Uglification in Grunt js

1 Answer

0 votes
by

Differentiating Concat / Minification / Uglification

  • Concatenation - appending all of the static files into single large file.

  • Minification - removing unnecessary whitespace and redundant / optional tokens like curly and semicolons, and can be reversed by using a 'linter'

  • Uglification - transforming the code into an 'unreadable' form, that is, renaming variables/functions to hide the original intent, mostly un-reversible.

Related questions

+1 vote
asked Feb 28, 2020 in JavaScript by miceperry
+1 vote
+1 vote
+1 vote
asked Feb 28, 2020 in JavaScript by miceperry
...