From b661f7cba0c69cc5a8dbe0716c276011a2f8b744 Mon Sep 17 00:00:00 2001 From: Ayo Date: Tue, 21 Mar 2023 23:04:10 +0100 Subject: [PATCH] update content --- _posts/2023-03-21-web-workers-in-angular.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_posts/2023-03-21-web-workers-in-angular.md b/_posts/2023-03-21-web-workers-in-angular.md index 3a53c06..15b1137 100644 --- a/_posts/2023-03-21-web-workers-in-angular.md +++ b/_posts/2023-03-21-web-workers-in-angular.md @@ -303,6 +303,8 @@ The heroes list should now be sorted depending on which button you click. Congratulations! You just built an Angular app that sorts a list of `heroes` by name or ID... using a Web Worker! 🎉 +All the code for the demo application we built in this blog can be found on [this Git repository](https://github.com/ayoayco/ng-web-worker-demo). + ## Gochas in Using Web Workers in Angular In our demo app, we only handled the scenario when Web Workers are supported in the browser. You should definitely always handle the other scenario so that it will still work even without web workers. @@ -317,4 +319,6 @@ One other gocha that I encountered in my work with Web Workers in Angular, is th We now know how to use Web Workers in Angular. We have seen how easy it is to use Angular CLI to add a worker for any component in our app. We even built a simple demo application that creates and sends a message to a web worker so that it will sort an array for us. -If you find this helpful or have ideas to improve it, I always appreciate feedback. You can send me an email ayo[at]ayco.io or follow me on Mastodon [@ayo@ayco.io](https://ayco.io/@ayo) \ No newline at end of file +Thank you for reading! + +If you find this helpful or have ideas to improve it, I always appreciate feedback. You can send me an email ayo[at]ayco.io or follow me on Mastodon [@ayo@ayco.io](https://ayco.io/@ayo)