Notes is an HTML/JavaScript/CSS client-side based simple TODO application.
Node.js is used for serving notes.html file
You can use to store your TODO list in your browser. I'm aware it is a very simple application. But, in the process of learning and developing it was a big journey and excitement for me. If you can review the codes and feedback to me, I will be appreciated. My main motivation is to use the knowledge I stored in my brain's synapses. I used HTML, basic usage (copy-paste from tutorial) of CSS and JavaScript. I try to write my JavaScript code.
The data is stored in the client local storage as JSON format in String. When you close the browser, data remains. Server just serves the client-side files. If you want to delete data completely or in case of a bug, you can delete the data from your browser's local storage settings.
express": "^4.17.1
- You should install the dependencies in the
package.jsonby running command below. It will automatically install the libraries locally under thenode_modulesfolder
npm install- After that you can use nodemon or simply run this:
node app.jsI am following this course on Udemy. It is a great course for training yourself as a full-stack developer.
Writing some test for JavaScript codes.