Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task 6 #98

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/sitespeedio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Run sitespeed.io
uses: docker://sitespeedio/sitespeed.io:latest
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

лучше конкретную версию (lastest на текущий момент), чтобы не было непредсказуемых изменений

with:
args: https://e28c-188-169-60-169.ngrok-free.app --budget.configPath ./homeBudget.json

- name: Upload sitespeed.io results
uses: actions/upload-artifact@v4
with:
name: sitespeed-results
path: ./sitespeed-result
Binary file added after.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added before.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 54 additions & 0 deletions case_study.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Case-study оптимизации

## Актуальная проблема
В проекте dev.to нашли проблему - избыточный объём `js` в проекте

## Формирование метрики
Для того, чтобы понимать, дают ли мои изменения положительный эффект я задала бюджет:
- объём загружаемого `js` на главной странице должен быть не больше 449.2 KB

## Вникаем в детали системы, чтобы найти главные точки роста
Для того, чтобы найти "точки роста" для оптимизации я воспользовалась отчетом sitespeed.io

### Ваша находка №1
До оптимизаций на главной странице:
```JavaScript Transfer Size with value 1.0 MB limit max 449.2 KB```

Vendor до оптимизаций:
![img.png](before.png)

devtool coverage показывает, что ~60% js не используется
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 угнетающая история конечно, загрузили чисто 60% ненужного чего-то


в vendor большую часть занимает moment (чуть меньше половины всего vendor)

в ./yarn.lock видно, что chart.js зависит от moment, а также от chartjs-color, скорее всего проблема лишнего js как раз тут

уберем moment из vendor (module.context.indexOf('moment') === -1):
```JavaScript Transfer Size with value 753.3 KB limit max 449.2 KB```

уберем chartjs-color, который также есть в зависимотях chart.js (module.context.indexOf('chartjs-color') === -1):
```JavaScript Transfer Size with value 727.5 KB limit max 449.2 KB```

уберем chart.js, так как он не используется на главной странице (module.context.indexOf('chart') === -1):
```JavaScript Transfer Size with value 452.2 KB limit max 449.2 KB```

у chartjs-color тоже есть зависимости, одна из них chartjs-color-string, уберем их (!/chartjs-color/.test(module.context)):
```JavaScript Transfer Size with value 452.1 KB limit max 449.2 KB``` АААААА
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

)))


уберем color-name (зависимость chartjs-color-string):
```JavaScript Transfer Size with value 448.0 KB limit max 449.2 KB``` (ура)

еще у chartjs-color есть зависимость color-convert, уберем ее (!/color-convert/.test(module.context)):
```JavaScript Transfer Size with value 448.0 KB limit max 449.2 KB```

Отрефакторим условие (!/chart|moment|color-name|color-convert/.test(module.context)):
```JavaScript Transfer Size with value 448.0 KB limit max 449.2 KB```

Vendor после оптимизаций:
![img.png](after.png)

## Результаты
в результате оптимизации удалось уменьшить объем загружаемого js на главной странице с 1.0 MB до 448.0 KB и уложиться в бюджет 449.2 KB
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍


## Защита от регрессии производительности
Для защиты от потери достигнутого прогресса при дальнейших изменениях программы был настроен CI
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

10 changes: 10 additions & 0 deletions config/webpack/development.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
const environment = require('./environment');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const config = environment.toWebpackConfig();

// For more information, see https://webpack.js.org/configuration/devtool/#devtool
config.devtool = 'eval-source-map';

// Add Bundle Analyzer plugin
config.plugins.push(
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: './report.html',
openAnalyzer: true
})
);

module.exports = config;
4 changes: 3 additions & 1 deletion config/webpack/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ environment.plugins.append(
name: 'vendor',
minChunks: (module) => {
// this assumes your vendor imports exist in the node_modules directory
return module.context && module.context.indexOf('node_modules') !== -1
return module.context &&
module.context.indexOf('node_modules') !== -1 &&
!/chart|moment|color-name|color-convert/.test(module.context)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 js mad skillz

}
})
)
Expand Down
7 changes: 7 additions & 0 deletions homeBudget.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"budget": {
"transferSize": {
"javascript": 460000
}
}
}