{"id":15673710,"url":"https://github.com/lmammino/opinionated-intro-to-node","last_synced_at":"2026-04-27T21:31:30.144Z","repository":{"id":138310968,"uuid":"338555041","full_name":"lmammino/opinionated-intro-to-node","owner":"lmammino","description":"Code examples for the talk \"An opinionated intro to Node.js\" - https://loige.link/devrupt-node","archived":false,"fork":false,"pushed_at":"2021-02-14T09:05:47.000Z","size":62,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-30T05:44:05.765Z","etag":null,"topics":["examples","getting-started","javascript","learning","node","nodejs","tutorial"],"latest_commit_sha":null,"homepage":"https://loige.link/devrupt-node","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lmammino.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2021-02-13T11:03:18.000Z","updated_at":"2021-02-15T08:33:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"684271c4-457c-4d6e-ab70-dd1b6e3ad7cb","html_url":"https://github.com/lmammino/opinionated-intro-to-node","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lmammino/opinionated-intro-to-node","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Fopinionated-intro-to-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Fopinionated-intro-to-node/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Fopinionated-intro-to-node/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Fopinionated-intro-to-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lmammino","download_url":"https://codeload.github.com/lmammino/opinionated-intro-to-node/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Fopinionated-intro-to-node/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32356598,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["examples","getting-started","javascript","learning","node","nodejs","tutorial"],"created_at":"2024-10-03T15:41:49.978Z","updated_at":"2026-04-27T21:31:30.127Z","avatar_url":"https://github.com/lmammino.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# An opinionated intro to Node.js - code examples\n\nIn this repository you can find the code examples presented in the talk [An opinionated intro to Node.js](https://loige.link/devrupt-node) presented at [Devrupt Hospitality Hackaton](https://devrupt-hospitality.com/).\n\n[![An opinionated intro to Node.js](./images/cover.png)](https://loige.link/devrupt-node)\n\n## Setup\n\nRequires `Node.js 14+`.\n\nInstall the necessary dependencies with:\n\n```bash\nnpm install\n```\n\n## Examples\n\n  - [`delete-reservation-cb.js`](./delete-reservation-cb.js) - Shows async control flow using callbacks\n  - [`delete-reservation-promise.js`](./delete-reservation-promise.js) - Shows async control flow using promises\n  - [`delete-reservation-async.js`](./delete-reservation-async.js) - Shows async control flow using async/await\n  - [`sequential-execution.js`](./sequential-execution.js) - Show sequential execution using async/await\n  - [`sequential-execution-pitfall.js`](./sequential-execution-pitfall.js) - Shows a common pitfall with sequential execution\n  - [`concurrent-execution.js`](./concurrent-execution.js) - Shows concurrent execution using `Promise.all()`\n  - [`concurrent-execution-settled.js`](./concurrent-execution-settled.js) - Shows concurrent execution using `Promise.allSettled()`\n  - [`limited-concurrent-execution.js`](./limited-concurrent-execution.js) - Shows limited concurent execution using the [async](https://npm.im/async) module\n  - [`web-server-batching.js`](./web-server-batching.js) - Shows a web server example taking advantage of the request batching pattern\n\n\n## Contributing\n\nEveryone is very welcome to contribute to this project.\nYou can contribute just by submitting bugs or suggesting improvements by\n[opening an issue on GitHub](https://github.com/lmammino/opinionated-intro-to-node/issues).\n\n\n## License\n\nLicensed under [MIT License](LICENSE). © Luciano Mammino.\n\n\n\u003ca href=\"https://www.nodejsdesignpatterns.com\"\u003e\u003cimg width=\"240\" align=\"right\" src=\"https://github.com/lmammino/lmammino/blob/master/nodejsdp.jpg?raw=true\"\u003e\u003c/a\u003e\n\n## Node.js Design Patterns\n\nIf you enjoyed the material here consider checking out [Node.js Design Patterns](https://www.nodejsdesignpatterns.com/), a book designed to help you build production-grade Node.js applications using proven patterns and techniques\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flmammino%2Fopinionated-intro-to-node","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flmammino%2Fopinionated-intro-to-node","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flmammino%2Fopinionated-intro-to-node/lists"}