Getting Started with Tiptap Tiptap is a headless rich text editor framework for the web that gives developers complete freedom to customize the editor’s look and functionality. Unlike traditional WYSIWYG editors, Tiptap provides 2024-12-25
Getting Started with Lexical What is Lexical?Lexical is an open-source text editor framework designed with extensibility, reliability, and performance in mind. Unlike traditional rich text editors that operate directly on the DOM 2024-12-25
Getting Started with Next.js Official DocumentationFor comprehensive documentation and tutorials, visit the official Next.js website: Next.js Documentation Next.js Learn Course Next.js GitHub Repository Next.js is a powerful Re 2024-12-25
Getting Started with Supabase What is Supabase?Supabase gives developers a PostgreSQL database, authentication, instant APIs, real-time subscriptions, storage, and more - all through a unified interface. It’s designed to be easy t 2024-12-25
Getting-Started-with-Tailwindcss Offical Documents https://www.tailwindcss.cn/ Tailwindcss 4.1.0Offical Dochttps://tailwindcss.com/docs/installation/using-vite Add tailwindcss to Exist ProjectStep 1. Install 1pnpm install tailwindcss 2024-12-24
Redux: getting-started Official Documentationhttps://redux.js.org/introduction/getting-started 0. Create App1 or 1npx create-next-app --example with-redux my-app After it, 1pnpm install 1. Start Project1pnpm start 2. 2024-12-24
Essential React Hooks Reducer123456789101112131415161718192021import { useState } from "react";export default function App() { const [count, setCount] = useState(0); const handleIncrement = () =& 2024-12-23
Node Version Manager (nvm-windows): A Basic Guide Node Version Manager (NVM) is an essential tool for Node.js developers that allows you to easily manage multiple Node.js versions on a single machine. This flexibility is invaluable when working acros 2024-12-23
A Quick Guide to npm, Yarn, and pnpm: Package Managers for JavaScript When it comes to managing dependencies in JavaScript projects, package managers are essential tools for developers. Three of the most popular options are npm, Yarn, and pnpm. In this post, we’ll brief 2024-12-23
React Simple Case - TodoList 1npx create-next-app@latest Try Run 1npm run dev Create DIR components in src/ Create File AddToDo.tsx in src/components.Create File TodoFilter.tsx in src/components.Create File ToDoItem.tsx in src 2024-12-22