28/06/2023
here are my favourite extension which boosts my productivity, try these and thank me later ๐
1. Indent Rainbow: This extension colorizes the indentation in your code based on a color scheme. This makes it easier to follow complex code and understand the depth of each line, improving code readability and reducing the time spent on debugging related to indentation issues.
2. Bookmarks: Bookmarks allows you to mark places in your code that you need to return to later. This is extremely helpful during debugging or when you need to work on a specific part of your codebase later. You can easily navigate between bookmarks, making code navigation a breeze.
3. Path Intellisense: Path Intellisense autocompletes filenames and directory paths in your project. This saves a lot of time when you're importing or requiring files.
4. CSS Peek: CSS Peek allows you to peek into your CSS ID and class strings from your HTML, showing you exactly what CSS is applied where. This helps streamline the process of working with CSS and HTML together, making it easier to debug and edit styles directly.
5. Prettier: Prettier is an opinionated code formatter that ensures your code follows a consistent style. It formats your code automatically upon save, which can significantly speed up your coding and review process.
6. GitLens: GitLens supercharges the Git capabilities built into Visual Studio Code. It helps you to visualize code authorship at a glance via Git blame annotations and code lens, explore Git logs and more. It makes working with Git and understanding code history easier.
7. Code Spell Checker: This extension helps to catch common spelling errors while keeping the number of false positives low. This can be helpful in avoiding typos in your code, comments, and markdown files.
8. Thunder Client/Postman: These are API testing tools built into VS Code. They allow you to test APIs directly from your IDE, saving you the need to switch between different platforms.
9. Live Server: Live Server launches a local development server with live reload feature for static & dynamic pages. It helps you see the effects of your changes in real-time, improving the feedback loop during developm