In this project, you will add some functionality to your application to make it interactive. The user will also be able to mark task completion by selecting the corresponding checkbox (or undo it by unchecking the checkbox). The updated tasks list will be stored in local storage
- HTML
- CSS
- Javascript
- webpack
Clone Your Github Repository Follow these steps to clone your Github repo on Windows:
- Open Git Bash;
- If Git is not already installed, it is super simple. Just go to the Git Download Folder and follow the instructions.
- Go to the current directory where you want the cloned directory to be added;
- To do this, input cd and add your folder location. You can add the folder location by dragging the folder to Git bash.
- $ cd '/c/Users/Documents/My First Git Project'
- Go to the page of the repository that you want to clone.
- Click on “Clone or download” and copy the URL.
- Use the git clone command along with the copied URL from earlier;
- $ git clone https://github.com/USERNAME/REPOSITORY
- Press Enter;
- $ git clone https://github.com/USERNAME/REPOSITORY Cloning into Git … remote: Counting objects: 13, done. remote: Compressing objects: 100% (13/13), done. remove: Total 13 (delta 1), reused 0 (delta 1) Unpacking objects: 100% (13/13), done.
Congratulations, you have created your first local clone from your remote Github repository.
To get a local copy up and running follow these simple example steps.
- Install operating system that best work for you.
- Install the latest version of node.
- Install your favorite Text Editor
- Set-up linters in your local env
- Copy and paste the linter files to your local directory.
- The npm package manager is going to create a node_modules directory to install all of your dependencies.You shouldn't commit that directory. To avoid that, you can create a .gitignore file and add node_modules/ to it:
- you need to initialize npm to create package.json file
- run npm install --save-dev hint@6.x
- add hintrc
- run npx hint .
- .stylelintrc
- run npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
- run npx stylelint "**/*.{css,scss}"
- eslint: Run npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x
- Run npx eslint .
- Fix linter errors.
- IMPORTANT NOTE: feel free to research auto-correct options for Stylelint if you get a flood of errors but keep in mind that correcting style errors manually will help you to make a habit of writing a clean code!
👤 Kidde George William
- GitHub: @kidde60
- LinkedIn: @George William Kidde
👤 Losalini Rokocakau
- GitHub: @chelmerrox
- Twitter:@chelmerrox
- LinkedIn: @Losalini Rokocakau
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.
Give a ⭐️ if you like this project!
- Our God & families
- Microverse
- Microverse team members for the extra help & guidance:
- Microverse TSEs
This project is MIT licensed.