Articles & Tutorials
for you to read...
- Compressed NFTs: Collections, Verification, and Building a Claim Page
Taking our cNFT minting system to production: creating verified collections, building a web-based claim flow, and preparing for mainnet deployment.
- Adding Drizzle ORM to Your SvelteKit + SQLite Setup
Level up from raw SQL to type-safe queries with Drizzle—the lightweight ORM that doesn't hide the SQL you've learned.
- SQLite Basics: Learn to Write and Query a Database with Bun
A practical introduction to SQLite using Bun's built-in database—create tables, insert data, and write queries from scratch.
- The Easiest Way to Connect SQLite with Svelte for Local Development
Learn how to set up a local SQLite database with SvelteKit so you can practice data fetching without any external services.
- Building Compressed NFTs on Solana with Generative SVG Art
A practical guide to creating and minting compressed NFTs (cNFTs) on Solana using Metaplex Bubblegum, with animated SVG artwork generated from wallet addresses.
- Learn Svelte & SvelteKit: Course Overview
A complete beginner's guide to Svelte and SvelteKit. From reactivity basics to full-stack applications, learn the framework that compiles away.
- What Is Svelte?
Discover why Svelte takes a fundamentally different approach to building UIs. Learn how the compiler-first philosophy eliminates runtime overhead and simplifies your code.
- Your First Component
Learn the anatomy of a Svelte component file. Understand how script, markup, and styles work together in a single .svelte file.
- Reactivity Basics
Master Svelte's reactive system. Learn how reactive declarations, statements, and the $: syntax make state management effortless.
- Two-Way Binding
Master Svelte's bind directive for seamless form handling. Learn to bind inputs, selects, checkboxes, and component props.