{"id":25238063,"url":"https://github.com/estherslabbert/odin-to-do-list","last_synced_at":"2026-04-30T15:32:21.733Z","repository":{"id":273912366,"uuid":"921274602","full_name":"EstherSlabbert/odin-to-do-list","owner":"EstherSlabbert","description":"The Odin Project: Todo List","archived":false,"fork":false,"pushed_at":"2025-01-23T18:37:25.000Z","size":760,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-11T16:43:22.593Z","etag":null,"topics":["javascript","odin-project","vanilla-javascript","webpack"],"latest_commit_sha":null,"homepage":"https://estherslabbert.github.io/odin-to-do-list/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EstherSlabbert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-23T16:55:27.000Z","updated_at":"2025-01-23T18:32:19.000Z","dependencies_parsed_at":"2025-01-23T18:42:08.642Z","dependency_job_id":null,"html_url":"https://github.com/EstherSlabbert/odin-to-do-list","commit_stats":null,"previous_names":["estherslabbert/odin-to-do-list"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EstherSlabbert%2Fodin-to-do-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EstherSlabbert%2Fodin-to-do-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EstherSlabbert%2Fodin-to-do-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EstherSlabbert%2Fodin-to-do-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EstherSlabbert","download_url":"https://codeload.github.com/EstherSlabbert/odin-to-do-list/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247385629,"owners_count":20930599,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["javascript","odin-project","vanilla-javascript","webpack"],"created_at":"2025-02-11T16:43:20.723Z","updated_at":"2026-04-30T15:32:21.708Z","avatar_url":"https://github.com/EstherSlabbert.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The Odin Project: ToDo List\n\nThis is my solution for the Odin Project's ToDo List Page project, the specifications of which can be found [here](https://www.theodinproject.com/lessons/node-path-javascript-todo-list).\n\nTo learn more about bundling your assets with webpack go [here](https://webpack.js.org/).\n\n## Set up for project\n\n- `npm init` and follow prompts to create project.\n- `npm install webpack webpack-cli --save-dev` to install webpack.\n- `npm i html-webpack-plugin` to install HTML webpack plugin.\n- Create `src/index.html` and `src/index.js` files.\n- Create `webpack.config.js` in root of project directory with the following minimum content:\n\n```js\nconst path = require(\"path\");\nconst HtmlWebpackPlugin = require(\"html-webpack-plugin\");\n\nmodule.exports = {\n  entry: \"./src/index.js\",\n  output: {\n    filename: \"main.js\",\n    path: path.resolve(__dirname, \"dist\"),\n  },\n  plugins: [\n    new HtmlWebpackPlugin({\n      template: \"./src/index.html\",\n    }),\n  ],\n};\n```\n\n- `npx webpack --config webpack.config.js` to run the build with the webpack config you set. This should generate the files in the `./dist` folder. (command can be run without `--config webpack.config.js` flag if it has the default name as it does).\n\n- Add `\"build\": \"webpack --mode=development\"` to scripts section of package.json file. Now you can run build command by typing `npm run build`.\n\n- `npx webpack --watch` will not have to rerun webpack every time you make a change to your `.js` files.\n\n- `npm install --save-dev style-loader css-loader` to add css to webpack and add the following to your `webpack.config.js`:\n\n```js\nmodule: {\n    rules: [\n      {\n        test: /\\.css$/,\n        use: [\"style-loader\", \"css-loader\"],\n      },\n    ],\n  },\n```\n\nTo run and get build from webpack in dist folder: `npm run build`.\n\nTo display in GitHub Pages see this [gist](https://gist.github.com/cobyism/4730490).\n\n## Acknowledgements\n\nBased on the anime One Punch.\n\n[Icons](https://icons8.com/icon/set/time-and-date/bubbles) by icons8.\n\n[Planner](https://icons8.com/icon/114612/planner) icon by [Icons8](https://icons8.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Festherslabbert%2Fodin-to-do-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Festherslabbert%2Fodin-to-do-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Festherslabbert%2Fodin-to-do-list/lists"}