My First JavaScript application so no point of judging with this one
live at todojs
- checkout branch master
- in the directory, open command prompt(go to address bar in file explorer and type cmd and then << press enter >> )
npm install
npm run serves
. see the output in cmd for the address where application is servednpm run build
- Webpack for building and serving
- Babel : transpiler of next generation javascript to current version
- Jest : testing framework;
- index.js is entry point for app.
- todo.css is entry style point for the app
--- Entry points in source code:
- ./todo/todo.js : View of app of MVC
- ./todo/framework.js : controller of app of MVC
- ./todo/store.js : model of app of MVC
- ./todo/util.js : hardwork for the app exported in this module.
./dist/todo.js : compiled file and served into the browser