Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 992 Bytes

README.md

File metadata and controls

38 lines (33 loc) · 992 Bytes

Description

This project is an implementation of a To do list using npm, webpack and tailwindcss. With pure JavaScript and no frameworks. This webapp can be toggled between light and dark mode.

Light mode:

Light mode

Dark mode:

Dark mode

How to run the project

To run the project, you must have installed git and nodejs.

  1. Open the terminal.
  2. Clone the repository:
git clone https://github.com/iaaron-xyz/todo-list.git
  1. Enter to the folder project:
cd todo-list
  1. Next, install the necessary dependencies running the command:
npm install
  1. Once installed, run the next tailwind command to generate the style file: output.css:
npx tailwindcss -i ./src/style.css -o ./src/output.css
  1. Build the project:
npm run build
  1. Finally, to run the project you could open the html file ./dist/index.html or executing the next command:
npm start