TO-DO app or task tracker
1.you can add task month-wise
2.you can directly click on the specific date so that you can add task to that date
3.a task counter to count how many tasks are remaining
4.Dark and light mode so that your eyesight stays better
5.task counter also for single day so that you can see how many tasks to do every single day.
To run This locally on your machine :
1.Simply install tthe application from the releses the ".exe" file
(if some alert appears just click on more info and the click on Run anyway it's not harmful for your device)
Then it will install automatically
Then you're good to go to use my application
Why I made it: So basically it's my second electron project and i want to make something which is useful for evryone and also to learn more about Electron JS. It's a beginner friendly project so it's very easy project!!!
How I made it:
1.Firstly you must need nodejs and npm in your device if not install it according to your needs
2.then run "npm init -y" to intialise the project
3.As it's electron project run "npm install electron --save-dev" to install electron. (You always need to run this command when you are making new elctron project. Run this in your project folder)
4.You're done here with installations now just make files "index.html, styles.css, renderer.js" These are the main file where you write your code
5.also make "main.js" This is very IMP file as this file loads your electrin window ans also initialise it in your "package.json" file
Now you're done just write your codes in main file and there you go you will make your first desktop app using ElectronJS!!