{"id":20031223,"url":"https://github.com/heracliteanflux/exercises-web","last_synced_at":"2026-05-03T23:34:54.915Z","repository":{"id":192654971,"uuid":"687141025","full_name":"heracliteanflux/exercises-web","owner":"heracliteanflux","description":"Exercises in web programming.","archived":false,"fork":false,"pushed_at":"2023-09-04T23:06:03.000Z","size":181,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-01T01:07:49.390Z","etag":null,"topics":["css","d3","d3js","html","javascript","plotly","plotlyjs"],"latest_commit_sha":null,"homepage":"","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/heracliteanflux.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}},"created_at":"2023-09-04T17:56:44.000Z","updated_at":"2023-09-04T19:03:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"92ed90ec-b43a-498e-8458-1abc769b65fe","html_url":"https://github.com/heracliteanflux/exercises-web","commit_stats":null,"previous_names":["heracliteanflux/exercises-web"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/heracliteanflux/exercises-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heracliteanflux%2Fexercises-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heracliteanflux%2Fexercises-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heracliteanflux%2Fexercises-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heracliteanflux%2Fexercises-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/heracliteanflux","download_url":"https://codeload.github.com/heracliteanflux/exercises-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heracliteanflux%2Fexercises-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32589262,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["css","d3","d3js","html","javascript","plotly","plotlyjs"],"created_at":"2024-11-13T09:31:41.118Z","updated_at":"2026-05-03T23:34:54.900Z","avatar_url":"https://github.com/heracliteanflux.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Exercises in web programming\n\n## JavaScript\n\n* [ [h](https://www.commonjs.org) ][ [w](https://en.wikipedia.org/wiki/CommonJS) ] Common.js\n* [ [h](https://d3js.org) ][ w ] D3.js\n* [ [h](https://expressjs.com) ][ w ] Express.js\n* [ [h](https://leafletjs.com) ][ w ] Leaflet.js\n* [ [h](https://nextjs.org) ][ [w](https://en.wikipedia.org/wiki/Next.js) ] Next.js\n* [ [h](https://nodejs.org/) ][ w ] Node.js\n* [ [h](https://plotly.com/javascript/) ][ w ] Plotly.js\n* [ h ][ w ] React.js\n* [ [h](https://requirejs.org) ][ w ] Require.js\n* [ [h](https://www.typescriptlang.org) ][ [d](https://www.typescriptlang.org/docs/handbook/intro.html) ] TypeScript\n\n```js\n// check whether an object `obj` is of type `object`\nif (\n  typeof obj === 'object' \u0026\u0026 // it is of type `object`\n  !Array.isArray(obj) \u0026\u0026     // it is not an array\n  obj !== null               // it is not null\n) {\n  // do something\n}\n```\n\n## Texts\n\nAbelson, Harold et al. (2022). _Structure and Interpretation of Computer Programs_. JavaScript Ed. [MIT Press](https://mitpress.mit.edu/9780262543231/structure-and-interpretation-of-computer-programs/). [Wiki](https://en.wikipedia.org/wiki/Structure_and_Interpretation_of_Computer_Programs,_JavaScript_Edition).\n\nHaverbeke, Marijn. (2018). _Eloquent JavaScript: A Modern Introduction to Programming_. 3rd Ed. No Starch Press. [Home](https://eloquentjavascript.net).\n\nZakas, Nicholas C. (2014). _The Principles of Object-Oriented JavaScript_. [No Starch Press](https://nostarch.com/oojs).\n\n* Chemy, Boris. (2019). _Programming TypeScript: Making Your JavaScript Applications Scale_. O'Reilly.\n* Crockford, Douglas. (2018). _How JavaScript Works_. [Home](https://www.howjavascriptworks.com).\n* Crockford, Douglas. (2008). _JavaScript: The Good Parts_. O'Reilly.\n* Flanagan, David. (2020). _JavaScript The Definitive Guide: Master the World's Most-Used Programming Language_. 7th Ed. O'Reilly.\n* Goldberg, Josh. (2022). _Learning TypeScript: Enhance Your Web Development Skills Using Type-Safe JavaScript_. O'Reilly.\n* Scott, Adam D.; Matthew MacDonald; \u0026 Shelley Powers. (2021). _JavaScript Cookbook: Programming the Web_. 3rd Ed. O'Reilly.\n* Simpson, Kyle. (2015). _You Don't Know JS: Async \u0026 Performance_. O'Reilly.\n* Simpson, Kyle. (2015). _You Don't Know JS: ES6 \u0026 Beyond_. O'Reilly.\n* Simpson, Kyle. (2015). _You Don't Know JS: Types \u0026 Grammar_. O'Reilly.\n* Simpson, Kyle. (2015). _You Don't Know JS: Up \u0026 Going_. O'Reilly.\n* Simpson, Kyle. (2014). _You Don't Know JS: Scope \u0026 Closures_. O'Reilly.\n* Simpson, Kyle. (2014). _You Don't Know JS: this \u0026 Object Prototypes_. O'Reilly.\n* Vanderkam, Dan. (2019). _Effective TypeScript: 62 Specific Ways to Improve Your TypeScript_. O'Reilly.\n* Zakas, Nicholas C. (2016). _Understanding ECMAScript 6: The Definitive Guide for JavaScript Developers_. [No Starch Press](https://nostarch.com/ecmascript6).\n\n## Resources\n\n* [ [y](https://www.youtube.com/watch?v=-bEzt5ISACA) ] freeCodeCamp. (15 Nov 2022). \"React State Management – Intermediate JavaScript Course\". YouTube.\n* [ [y](https://www.youtube.com/watch?v=30LWjhZzg50) ] freeCodeCamp. (10 Nov 2022). \"Learn TypeScript – Full Tutorial\". YouTube.\n* [ [y](https://www.youtube.com/watch?v=Rs_rAxEsAvI) ] freeCodeCamp. (12 May 2022). \"Self-Driving Car with JavaScript Course - Neural Networks and Machine Learning\". YouTube.\n* [ [y](https://www.youtube.com/watch?v=xkBheRZTkaw) ] freeCodeCamp. (05 May 2022). \"Data Visualization with D3 – Full Course for Beginners [2022]\". YouTube.\n* [ [y](https://www.youtube.com/watch?v=GHTA143_b-s) ] freeCodeCamp. (22 Feb 2022). \"NextJs Course for Beginners - Create a REST API\". YouTube.\n* [ [y](https://www.youtube.com/watch?v=gp5H0Vw39yw) ] freeCodeCamp. (15 Mar 2021). \"Learn TypeScript - Full Course for Beginners\". YouTube.\n* [ [y](https://www.youtube.com/watch?v=PkZNo7MFNFg) ] freeCodeCamp. (10 Dec 2018). \"Learn JavaScript - Full Course for Beginners\". YouTube.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheracliteanflux%2Fexercises-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheracliteanflux%2Fexercises-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheracliteanflux%2Fexercises-web/lists"}