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