All the JavaScript tutorials ⤵️
-
Arbitrage on Solana: Find Price Gaps Between DEXs with Node.js
I wrote a script that scans Raydium and Orca for the same token pair and flags when prices diverge enough to profit. Here's the full code.
-
How to Decode Solana Program Logs Like a Pro
Solana program logs look like noise until you know what to look for. Here's how I extract useful data from logs — swap amounts, errors, and custom events — using @solana/web3.js.
-
Build a Solana Token Sniper Bot with JavaScript
I built a basic Solana sniper bot that detects new liquidity pools and executes buys within seconds. Here's the full breakdown with working code.
-
Monitor Any Solana Wallet in Real-Time with Node.js
Stop polling RPCs every 5 seconds. Here's how I track Solana wallet activity in real-time using WebSockets and @solana/web3.js — with actual working code.
-
WebSockets in Node.js — A Practical Guide
HTTP is great for most things but sometimes you need real-time data. Here's how I set up WebSockets in Node.js without overcomplicating it.
-
Zod Is the Best Thing That Happened to My TypeScript Code
I used to write manual type guards and validation logic everywhere. Then I found Zod and I'm never going back.
-
Building APIs That Don't Make You Want to Quit
API design doesn't have to be painful. Here are practical patterns I follow to keep my REST APIs clean, predictable, and easy to work with.
-
The Stack I Use for Every New Project in 2026
After years of trying different tools and frameworks, here's what I actually reach for when starting something new.
-
Understanding Closures in JavaScript (With Real Examples)
Closures are one of the most powerful features of JavaScript. Here’s what they are, how they work, and when to use them with practical examples.
-
React Performance Traps Every Developer Should Know
Slow React apps frustrate users. Here are the most common performance traps in React and how to avoid them with simple best practices.