-
Notifications
You must be signed in to change notification settings - Fork 57
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
base: master
Are you sure you want to change the base?
Task 6 #98
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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 | ||
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 |
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 до оптимизаций: | ||
 | ||
|
||
devtool coverage показывает, что ~60% js не используется | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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``` АААААА | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 после оптимизаций: | ||
 | ||
|
||
## Результаты | ||
в результате оптимизации удалось уменьшить объем загружаемого js на главной странице с 1.0 MB до 448.0 KB и уложиться в бюджет 449.2 KB | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
|
||
## Защита от регрессии производительности | ||
Для защиты от потери достигнутого прогресса при дальнейших изменениях программы был настроен CI | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
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; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 js mad skillz |
||
} | ||
}) | ||
) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"budget": { | ||
"transferSize": { | ||
"javascript": 460000 | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
лучше конкретную версию (lastest на текущий момент), чтобы не было непредсказуемых изменений