Category: Angular
-
[Solved] Angular sub paths not working.
Make sure to wrap your app-root element with the body tag! For example:
-
Creating a component and adding it to an existing module.
Sometimes when creating a component, we want it to exist under a module to keep things structured and so that our app module doesn’t get huge. It can…
-

Angular JSON to CSV pipe
👋 Hey there! Are you working on an Angular app that needs to convert JSON data to CSV format? Look no further than the jsontocsv pipe! Here is…
-

Handy angular CSV to JSON pipe
Today, we’re going to talk about a code snippet that can turn CSV data into JSON format using Angular. 🤖💻 First things first, let’s take a look at…
-

💻 Angular Tip: How to Trigger a Pipe Update with Object Assignments
If you’re building an Angular app that uses pipes to transform data, you may run into a situation where you need to update an object in your component…
-

Fix for Angular template Autocomplete.
👋 Hey there, Angular developers! Do you use Visual Studio Code as your code editor and find yourself missing out on Angular template intellisense? 😩 Fear not, there’s…
-

Fix for prettier splitting HTML tags in VSCode
🎉🎉🎉 ng on an Angular application can be a joyous experience, but when prettier starts splitting your HTML tags, it can quickly turn into a nightmare 😱. Fear…
-

Download JSON data dynamically in Angular
Here is a quick code snippet that shows how we can download JSON data. This is useful for saving the application ‘state’ kind of like a save feature…
-
How to map from one dynamic object to another in typescript 🌏
I wanted users to be able to select a style from a drop down at GeoJson-Styler (jcianci12.github.io) The user can choose how they want their geoJSON objects styled.…
-
Angular CSV to JSON 🚗
Here is a handy little pipe that allows csv to JSON (Usefull for importing CSV files into your angular app)