Skip to content

makersacademy/sample-trello-clone

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kards - Simple Kanban Board

HTML5 CSS JavaScript

A simple cards-based kanban board web app heavily inspired by Trello, the UI is also pretty similar to that of Trello. You can create many different kanban boards with different names, which holds cards. Each card can hold an unlimited number of items/tasks each. All items support drag and drop between cards as well as within the same card to reorder. All data is stored locally on the computer by the browser. This whole project was written by waterrmalann in HTML, CSS, and pure vanilla JavaScript with no external dependencies.

Product roadmap

Screenshot

Prerequisites

In order to set up and run the application on your machine, you will need to have the npm package manager installed.

To check whether you have npm installed, run the following command your terminal:

npm -v

If the output contains some sort of version number, then everything is okay.

If you see some variation of command not found: npm, try running brew install node to install NodeJS and its supporting commands, and then repeat the above command.

Setup

To run this application from within a terminal on your machine:

  1. Clone the repository.
git clone https://github.com/makersacademy/sample-trello-clone.git
  1. Change directory into the folder which you just cloned.
cd sample-trello-clone
  1. Install the dependencies.
npm install
  1. Run the server.
npm run serve

If the server starts successfully, you should see a message like this in your terminal:

Serving "/Users/your_username/dev/sample-trello-clone" at http://127.0.0.1:8080

Take the URL at the end of this message (expressed in the form of an IP address, and the port number which it is running on) and load in a web browser - you should now see the Kards interface, and you're ready to go.

If you're unable to get the application running locally, a live version of the web app is available on the author's GitHub Pages: https://waterrmalann.github.io/kards/.


License

MIT License, see LICENSE

About

🗒 A simple cards-based kanban board app inspired by Trello in pure vanilla JS.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 71.8%
  • CSS 18.8%
  • HTML 9.4%