https://github.com/fchristenson/bundling-architecture
https://github.com/fchristenson/bundling-architecture
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fchristenson/bundling-architecture
- Owner: fChristenson
- Created: 2020-04-12T08:01:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T11:19:25.000Z (almost 3 years ago)
- Last Synced: 2025-01-26T03:43:00.492Z (10 months ago)
- Language: TypeScript
- Size: 2.07 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# The bundling architecture
## What we will cover
- How over time bundling time increases
- How over time frontend unit test execution time grows
- How to think about code structure to make testing fast
- What we can do when our tests are already slow
## Notes
Any successful frontend project will at some point grow bigger.
Over time you will notice that your bundling time increases.
This happens for a number of reasons:
- You have more code.
- You have code that needs compiling.
- You have static files that are parsed in to your Javascript.
The same is true for your frontend unit tests.
The tests slow down for the same reasons as above with a few additions:
- You have added animations to your components.
- You have code that uses other types of delays that the test needs to wait for.
In this video I will show you how modular thinking can help with these issues.