lightweight browser based vanilla javascript task list app.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
A basic task list app created with the sole purpose of learning javascript DOM manipulation
To get a local copy up and running follow these simple steps.
This is an example of how to list things you need to use the software and how to install them.
- npm
npm install npm@latest -g
- Clone the Tasks_list
git clone https://github.com/ReubenHawley/Task_list.git
- Install NPM packages
npm install
Run the HTML file in the browser of choice
- User types to do task in the new task placeholder
- User clicks submit to add task
- Task is then persisted to local storage
- Tasks saved are displayed as a table under the Tasks header
- Tasks can be filtered for key search words by making use of regex.
- Individual tasks can be removed by clicking on the x icon
- All tasks can be cleared using the Clear tasks button
- I learned to traverse the DOM from within the app.js file in order to obtain,manipulate and return data back to the user
- How to handle classes in HTML
- Organizing of Layout in CSS
- How to handle event listeners
- Data return types
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Reuben Hawley - theonlyReuben - email
Project Link: https://github.com/ReubenHawley/Task_list
- Brad Traversy - tutorial