Skip to content

Instantly share code, notes, and snippets.

View ksandaru's full-sized avatar

Kanishka Sandaruwan ksandaru

  • University of Ruhuna
  • Sri Lanka
View GitHub Profile
@ShariqAnsari88
ShariqAnsari88 / Footer.jsx
Last active November 21, 2023 20:22
Online Shoe Store
View Footer.jsx
@gaearon
gaearon / minification.md
Last active October 14, 2023 14:11
How to Set Up Minification
View minification.md

In production, it is recommended to minify any JavaScript code that is included with your application. Minification can help your website load several times faster, especially as the size of your JavaScript source code grows.

Here's one way to set it up:

  1. Install Node.js
  2. Run npm init -y in your project folder (don't skip this step!)
  3. Run npm install terser

Now, to minify a file called like_button.js, run in the terminal: