Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fchristenson/bundling-architecture
https://github.com/fchristenson/bundling-architecture
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fchristenson/bundling-architecture
- Owner: fChristenson
- Created: 2020-04-12T08:01:07.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T11:19:25.000Z (about 2 years ago)
- Last Synced: 2023-08-20T07:21:55.692Z (over 1 year ago)
- Language: TypeScript
- Size: 2.07 MB
- Stars: 0
- Watchers: 0
- 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.