<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Keval sindhu</title>
    <description>The latest articles on DEV Community by Keval sindhu (@keval_sindhu_6d63886782e1).</description>
    <link>https://dev.to/keval_sindhu_6d63886782e1</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3730481%2F515d37a6-48e0-4112-a7a0-ede12ccd2722.png</url>
      <title>DEV Community: Keval sindhu</title>
      <link>https://dev.to/keval_sindhu_6d63886782e1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/keval_sindhu_6d63886782e1"/>
    <language>en</language>
    <item>
      <title>I Built a Full Kanban Board in Vanilla JavaScript (With Drag &amp; Drop + Time Tracking)</title>
      <dc:creator>Keval sindhu</dc:creator>
      <pubDate>Sat, 24 Jan 2026 16:59:02 +0000</pubDate>
      <link>https://dev.to/keval_sindhu_6d63886782e1/i-built-a-full-kanban-board-in-vanilla-javascript-with-drag-drop-time-tracking-55a7</link>
      <guid>https://dev.to/keval_sindhu_6d63886782e1/i-built-a-full-kanban-board-in-vanilla-javascript-with-drag-drop-time-tracking-55a7</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnik50v73n50rtp6c4mj5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnik50v73n50rtp6c4mj5.png" alt=" " width="800" height="399"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Introduction
&lt;/h2&gt;

&lt;p&gt;I recently finished building an open-source project called &lt;strong&gt;ProKanban&lt;/strong&gt; — a modern Kanban board application built entirely with &lt;strong&gt;Vanilla JavaScript&lt;/strong&gt;, HTML5, and modern CSS.&lt;/p&gt;

&lt;p&gt;The goal was simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Build a real productivity-style web app without using frameworks like React.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This project helped me improve my understanding of modular JavaScript architecture, UI state management, drag-and-drop interactions, and building real-world frontend features.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✨ What is ProKanban?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;ProKanban&lt;/strong&gt; is a responsive Kanban task board where users can manage tasks across workflow stages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;To Do
&lt;/li&gt;
&lt;li&gt;In Progress
&lt;/li&gt;
&lt;li&gt;On Hold
&lt;/li&gt;
&lt;li&gt;Done
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s designed with a clean dark UI and includes productivity-focused features beyond basic task cards.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✅ Key Features
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🧲 Drag &amp;amp; Drop Workflow
&lt;/h3&gt;

&lt;p&gt;Tasks can be moved smoothly between columns using drag-and-drop.&lt;/p&gt;

&lt;p&gt;Touch drag support is included for mobile devices.&lt;/p&gt;




&lt;h3&gt;
  
  
  💾 Persistent Storage
&lt;/h3&gt;

&lt;p&gt;All tasks are automatically saved using the browser’s &lt;strong&gt;LocalStorage&lt;/strong&gt;, so the board stays intact even after refreshing or closing the browser.&lt;/p&gt;




&lt;h3&gt;
  
  
  ⏱️ Task Time Tracking (Advanced Feature)
&lt;/h3&gt;

&lt;p&gt;One of the most interesting parts of this project was building a timer system:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Start/Pause timer directly inside a task card
&lt;/li&gt;
&lt;li&gt;Track total time spent per task
&lt;/li&gt;
&lt;li&gt;Store multiple work sessions
&lt;/li&gt;
&lt;li&gt;Automatically stop timers when tasks move to Done or On Hold
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each task maintains a complete session history.&lt;/p&gt;




&lt;h3&gt;
  
  
  📜 Activity History Log
&lt;/h3&gt;

&lt;p&gt;Every action is recorded:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Task creation
&lt;/li&gt;
&lt;li&gt;Task movement
&lt;/li&gt;
&lt;li&gt;Deletion
&lt;/li&gt;
&lt;li&gt;Timer events
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This makes the board feel like a real productivity tool.&lt;/p&gt;




&lt;h3&gt;
  
  
  📤 Export / 📥 Import Support
&lt;/h3&gt;

&lt;p&gt;Users can export their board data as JSON and import it later — useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;backups
&lt;/li&gt;
&lt;li&gt;portability
&lt;/li&gt;
&lt;li&gt;sharing workflows
&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  📱 Fully Responsive UI
&lt;/h3&gt;

&lt;p&gt;The layout adapts smoothly across devices:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Desktop: 4-column workflow
&lt;/li&gt;
&lt;li&gt;Tablet: grid layout
&lt;/li&gt;
&lt;li&gt;Mobile: stacked layout
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🛠️ Tech Stack
&lt;/h2&gt;

&lt;p&gt;This project is built using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Vanilla JavaScript (ES6+)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;HTML5&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;CSS3 (Grid, Flexbox, Variables, Glassmorphism)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;LocalStorage API&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Libraries used:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;canvas-confetti&lt;/code&gt; for celebration effects
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;DragDropTouch&lt;/code&gt; for touch drag support
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📂 Modular Architecture
&lt;/h2&gt;

&lt;p&gt;The project is structured into separate modules:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;drag.js&lt;/code&gt; → Drag &amp;amp; drop logic
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;timer.js&lt;/code&gt; → Time tracking system
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;storage.js&lt;/code&gt; → Local persistence
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;history.js&lt;/code&gt; → Activity logging
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;ui.js&lt;/code&gt; → Rendering and UI interactions
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Keeping the code modular made it much easier to scale features.&lt;/p&gt;




&lt;h2&gt;
  
  
  🌐 Live Demo
&lt;/h2&gt;

&lt;p&gt;Try it here:&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://codewithsindhu.github.io/kanban-board-js/" rel="noopener noreferrer"&gt;https://codewithsindhu.github.io/kanban-board-js/&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  📌 GitHub Repository
&lt;/h2&gt;

&lt;p&gt;The project is fully open-source:&lt;/p&gt;

&lt;p&gt;⭐ &lt;a href="https://github.com/CodeWithSindhu/kanban-board-js" rel="noopener noreferrer"&gt;https://github.com/CodeWithSindhu/kanban-board-js&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Contributions, issues, and feedback are welcome.&lt;/p&gt;




&lt;h2&gt;
  
  
  🎯 What I Learned
&lt;/h2&gt;

&lt;p&gt;Building ProKanban helped me practice:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Managing state without frameworks
&lt;/li&gt;
&lt;li&gt;Building modular JavaScript applications
&lt;/li&gt;
&lt;li&gt;Handling drag-and-drop UX properly
&lt;/li&gt;
&lt;li&gt;Implementing time tracking + logs
&lt;/li&gt;
&lt;li&gt;Writing production-quality documentation
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ✅ Future Improvements
&lt;/h2&gt;

&lt;p&gt;Planned roadmap features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Task filtering by priority/tags
&lt;/li&gt;
&lt;li&gt;Search support
&lt;/li&gt;
&lt;li&gt;Multi-board workflows
&lt;/li&gt;
&lt;li&gt;Cloud sync (Firebase)
&lt;/li&gt;
&lt;li&gt;React-based version
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ⭐ Closing
&lt;/h2&gt;

&lt;p&gt;If you find this project useful, feel free to star the repo or share feedback.&lt;/p&gt;

&lt;p&gt;Thanks for reading! 🚀&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>productivity</category>
      <category>showdev</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
