π Debug web apps directly from #Cursor #IDE with Browser-Tools #MCP! β‘
πΉ Console logs analysis
πΉ Network requests inspection
πΉ AI-powered debugging
π www.56kode.com/posts/connec...
#CursorIDE #AI #debug #chrome
@56kode.bsky.social
Frontend developer specializing in all things #React, #TS, and #JS My posts : https://www.56kode.com/
π Debug web apps directly from #Cursor #IDE with Browser-Tools #MCP! β‘
πΉ Console logs analysis
πΉ Network requests inspection
πΉ AI-powered debugging
π www.56kode.com/posts/connec...
#CursorIDE #AI #debug #chrome
I need to test this.
11.09.2025 09:05 β π 0 π 0 π¬ 1 π 0Yeah, thanks. I actually wanted to see the AI work on its own, but I should have added the documentation to the context.
10.09.2025 14:05 β π 0 π 0 π¬ 0 π 0Back from vacation βοΈ and straight into action!
I let AI handle a full dependency migration on my Astro blog: React 19, Astro 5 Content Layer, Tailwindβ¦ all automated β‘
Curious how it went?
π www.56kode.com/posts/automa...
#Astro #AI #cursor #cursorAI
Lost in your codebase? π€― Cursor's screenshot search feature is a game-changer! Just paste a UI screenshot and it finds the corresponding file for you. Saves so much time! #Cursor
17.07.2025 13:34 β π 1 π 0 π¬ 0 π 0AI agent stuck? π« Pro tip: Just open a new chat and restart! Often fixes the bug and gets things running smoothly again. #AI
10.07.2025 08:30 β π 3 π 0 π¬ 0 π 0π Tech Watch #15 is live!
π Compound Components in #React
π useSyncExternalStore demystified
π #AI & the future of dev jobs
π #TypeScript in the AI era
π Migrating from #ESLint to #BiomeJS
π open.substack.com/pub/56kode/p...
Skip the IDE-to-browser shuffle!
π Make Cursor talk to Jira with MCP
π― Get tickets, check specs, even auto-build test plans without leaving your editor.
π www.56kode.com/posts/integr... #Jira #CursorAI
π New article: Level Up #React - Mastering Context API
π Learn how React's Context API really works under the hood, whatβs new in React 19, and when to use it vs Zustand or Redux.
π Avoid unnecessary re-renders with proven optimization tips.
π Read β www.56kode.com/posts/level-...
Mutation testing helps you find the truth:
Your tests either catch real issues β or they don't.
Itβs not something to run on every push.
But from time to time? Itβs eye-opening π
So when should you use it?
π§Ή When cleaning up a legacy project
π§ When improving test quality
π¨ When you think your code is well tested β but want proof
But be warned β οΈ
Mutation testing is slow.
π It can multiply test time by 10x or more
π§± It may require config tweaks to work with your test setup
π’ In CI, it can make feedback loops way longer
Thatβs the magic of mutation testing:
β
It doesnβt just check if your code is covered
β
It checks if your tests are actually useful
And thatβs a huge difference.
Letβs say you wrote this:
return a > b;
Mutation testing might change it to:
return a < b;
If your tests still pass... do they really check the logic? π€
π₯ Mutation testing works like this:
- The tool (like Stryker) changes your code on purpose
- It runs your test suite
- If tests fail β good!
- If tests pass β bad sign: the mutation slipped through
π§ͺ What if your tests... were being tested too?
A high code coverage doesnβt mean your app is bug-free.
It just means your code was executed by tests β not that it was really verified.
Let me show you something better: mutation testing π
#testing #jest #vitest #js #ts
AI tools like ChatGPT or Claude write way better code with #TypeScript π€π§
Your types give the AI context π
Well-typed code = better suggestions, safer refactors, fewer bugs.
TypeScript isnβt a nice-to-have. Itβs your AI co-pilotβs map πΊοΈ
#ts #ai #cursor #windsurf
π Tech Watch #14 is live!
π Open-Closed Principle in React
π Pattern Matching in TanStack Query
π Faster Lazy Loading in React Router
π useEffect: Child vs Parent
π Cursor Rules for AI Dev in TS
π The Hidden Cost of AI Coding
π open.substack.com/pub/56kode/p...
There's nothing better than full remote work.
28.04.2025 09:36 β π 1 π 0 π¬ 0 π 0Want better answers from #AI?
π€ First, ask what info itβs missing to help you better.
βοΈ Then, ask it to rewrite your prompt for clarity.
You donβt need to be perfect β just collaborate smart π€β¨ #chatpgt #claudeai #claude #gemini #deepseek
π Tech Watch #13 is live!
π Master useReducer
π React.memo demystified
π React Reconciliation
π Tailwind's apply feature
π Toast in Server Components
π 56kode.substack.com/p/tech-watch...
π’ Stop managing complex state with multiple useState hooks! Learn how to master useReducer for structured state management in React π§©
πΉ Centralize business logic
πΉ Create explicit actions
πΉ Improve testability
π www.56kode.com/posts/level-...
#React
Your React.memo component keeps re-rendering?
Check the children.
JSX passed inline is recreated every render β breaks memo.
β
Solution: memoize children with useMemo,
or donβt memoize at all if itβs not worth it.
Code β¬οΈ
π Tech Watch #12 is live! Must-read for frontend devs:
π Real-world uses of TypeScript utility types
π Next.js auth with Server Components
π Vite vs Turbopack speed test
π React View Transitions API
π And more...
π Read here: 56kode.substack.com/p/tech-watch...
Why I stopped using AI code editors: https://lucianonooijen.com/blog/why-i-stopped-using-ai-code-editors/
02.04.2025 07:11 β π 0 π 1 π¬ 0 π 0π’ Want to improve your TypeScript skills? Learn how to refine number typing with literal types, branded types, and more! π οΈπ
π dev.to/56_kode/adva...
#TypeScript #TS
π Tech Watch #11 is out! Essential reads for frontend devs:
π Storing state in the URL in React
π Beyond React.memo for better performance
π LLMs for web devs
π Web Components guide
π SSR deep dive for React
πAnd more...
open.substack.com/pub/56kode/p...
New Level Up #React article!
π Stop fighting with useEffect! Master this powerful hook to build truly performant apps.
π§© Learn execution cycles, avoid infinite loops, and discover when NOT to use effects with practical examples.
π www.56kode.com/posts/level-... #reactjs #hooks
π Tech Watch #10 is out!
Curated frontend insights:
π Why unknown > any in #TypeScript
π TanStack Form v1 release
π Signals in #React: pros & cons
π #Cursor AI productivity tips
π React Wrapper Pattern
π Zod for API validation
π TypeScript Map Pattern
Read more: open.substack.com/pub/56kode/p...