{"id":16225451,"url":"https://github.com/mikebild/introduction-nodejs","last_synced_at":"2025-03-19T12:30:59.205Z","repository":{"id":91942528,"uuid":"84981794","full_name":"MikeBild/introduction-nodejs","owner":"MikeBild","description":"Introduction to NodeJS","archived":false,"fork":false,"pushed_at":"2023-09-25T14:44:21.000Z","size":1123,"stargazers_count":15,"open_issues_count":0,"forks_count":3,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-17T07:10:02.303Z","etag":null,"topics":["async","ecma","expressjs","introduction","javascript","monorepo","nodejs","quality","spread-operator","web-architecture","workshop","workspace","yarn"],"latest_commit_sha":null,"homepage":"https://mikebild.com","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/MikeBild.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2017-03-14T18:07:03.000Z","updated_at":"2023-11-05T10:38:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"cadaf267-aa62-4ec5-b2ca-979fdd464912","html_url":"https://github.com/MikeBild/introduction-nodejs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MikeBild%2Fintroduction-nodejs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MikeBild%2Fintroduction-nodejs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MikeBild%2Fintroduction-nodejs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MikeBild%2Fintroduction-nodejs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MikeBild","download_url":"https://codeload.github.com/MikeBild/introduction-nodejs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244426562,"owners_count":20450983,"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":["async","ecma","expressjs","introduction","javascript","monorepo","nodejs","quality","spread-operator","web-architecture","workshop","workspace","yarn"],"created_at":"2024-10-10T12:45:07.378Z","updated_at":"2025-03-19T12:30:58.895Z","avatar_url":"https://github.com/MikeBild.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction to NodeJS\n\n## Basics\n\n- [Introduction](1-introduction.md)\n- [Setup and Basics](2-setup-basics.md)\n- [Buffers](9-buffers.md)\n- [File System](11-file-system.md)\n- [Error-Handling](12-errors-and-globals.md)\n- [Globals](12-errors-and-globals.md)\n- [Utils](13-utilities.md)\n- [Scaling NodeJS-Apps](17-scaling-applications.md)\n\n## Runtime and Environment\n\n- [Web Server](3-first-application.md)\n- [REPL](4-repl.md)\n- [NPM \u0026 Yarn](5-npm-yarn.md)\n  - [Global vs. Local](5-npm-yarn.md#global-vs-local)\n  - [`package.json`](5-npm-yarn.md#package.json)\n  - [Update versions](5-npm-yarn.md#update-versions)\n  - [Yarn](5-npm-yarn.md#yarn)\n  - [Upgrade versions](5-npm-yarn.md#upgrade)\n  - [Workspaces and Monorepo](5-npm-yarn.md#workspaces-and-monorepo)\n- [Event-Loop](7-event-loop.md)\n- [Quality Tools](19-quality-tools.md)\n  - [Nodemon](19-quality-tools.md#nodemon)\n  - [ESLint](19-quality-tools.md#es-lint)\n  - [Process Manager and Supervisor](19-quality-tools.md#process-manager-and-supervisor)\n  - [Node-Inspector as Debugger](19-quality-tools.md#node-inspector)\n  - [Debug as logging tool](19-quality-tools.md#debug-as-logging-tool)\n  - [Code Style with Prettier](19-quality-tools.md#code-style-with-prettier)\n\n## Web Development\n\n- [HTTP](3-first-application.md)\n- [Web Architectures](14-web-architecture.md)\n  - [Server Side Rendering \u0026 Universal JavaScript](14-web-architecture.md)\n  - [XML/JSON RPC](14-web-architecture.md)\n  - [RESTful API](14-web-architecture.md)\n- [ExpressJS](15-expressjs.md)\n  - [Basics](15-expressjs.md#setup)\n  - [Environment \u0026 Practices](15-expressjs.md#environment-and-practices)\n  - [Middleware](15-expressjs.md#middleware)\n  - [Render Views with Templates](15-expressjs.md#render-views-with-templates)\n  - [EJS](15-expressjs.md#ejs)\n  - [Routes](15-expressjs.md#routes)\n  - [Error Handling](15-expressjs.md#error-handling)\n  - [Web-Sockets](15-expressjs.md#socketio)\n  - [RESTful / Hypermedia](15-expressjs.md)\n  - [Web-Events / Web-Hooks](15-expressjs.md)\n\n## Testing\n\n- [Test Pyramid](16-testing.md#test-pyramid)\n- [Test Types](16-testing.md#test-types)\n- [Arrange-Act-Assert](16-testing.md#arrange-act-assert)\n- [Mocha](16-testing.md#mocha)\n- [Assert](16-testing.md#asserts)\n- [Negative Tests](16-testing.md#negative-tests)\n- [Async](16-testing.md#async-tests)\n- [Integration Tests](16-testing.md#integration-tests)\n\n## Deployment\n\n- [NodeJS Production / Deploment](24-deployment)\n- [Introduction to Docker](https://github.com/mikebild/introduction-docker)\n- [Introduction to Kubernetes](https://github.com/mikebild/introduction-kubernetes)\n- [Docker \u0026 Kubernetes Tools](./tools.md)\n- [AWS Node-Lambda](https://www.npmjs.com/package/node-lambda)\n- [Now](https://now.sh)\n- [Netlify](https://www.netlify.com/)\n\n## Async Pattern\n\n- [Callbacks](6-callbacks.md)\n- [EventEmitter](8-event-emitter.md)\n- [Streams](10-streams.md)\n- [Promises](18-async-promises.md)\n- [RxJs](22-rxjs.md)\n\n## ECMA\n\n- [ECMA with Babel](21-ECMA.md)\n  - [Block-Scope](21-ECMA.md#block-scope)\n  - [Template Strings](21-ECMA.md#template-strings)\n  - [Destructing](21-ECMA.md#destructing)\n  - [Classes](21-ECMA.md#classes)\n  - [Statics](21-ECMA.md#statics)\n  - [Object-Literal Extentions](21-ECMA.md#object-literal-extentions)\n  - [Modules, Exports and Imports](21-ECMA.md#modules-exports-and-imports)\n  - [Arrow Functions](21-ECMA.md#arrow-functions)\n  - [Default Parameter](21-ECMA.md#default-parameter)\n  - [Rest Parameters](21-ECMA.md#rest-parameters)\n  - [Spread Operator for Objects](21-ECMA.md#spread-operator-for-objects)\n  - [Spread Operator for Arrays](21-ECMA.md#spread-operator-for-arrays)\n  - [Promises](21-ECMA.md#promises)\n  - [Async and Await](21-ECMA.md#async-and-await)\n  - [Generator Function](21-ECMA.md#generator-function)\n\n## TypeScript\n\n- [Setup](23-TypeScript.md#setup)\n- [Testing](23-TypeScript.md#testing)\n- [Resources](23-TypeScript.md#resources)\n\n## Functional JS\n\n- [Functional JS](20-functional.md)\n\n## Examples\n\n- [ExpressJS-EJS](/EXAMPLES/EXPRESSJS/SSR/README.md)\n- [ExpressJS-SPDY/HTTP2 Server-Side Events](/EXAMPLES/HTTP2/EXPRESSJS-SPDY/README.md)\n\n## Issue Reporting\n\nIf you have found a bug or if you have a feature request, please report them at\nthis repository issues section. Please do not report security vulnerabilities on\nthe public\n[GitHub issue tracker](https://github.com/MikeBild/introduction-nodejs/issues).\n\n## License\n\nThis project is licensed under the MIT license. See the [LICENSE](LICENSE) file\nfor more info.\n\n## Thanks\n\nYou like this **NodeJS introduction** and you want to see what coming next?\nFollow me on Twitter [`@mikebild`](https://twitter.com/mikebild).\n\nEnjoy!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikebild%2Fintroduction-nodejs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikebild%2Fintroduction-nodejs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikebild%2Fintroduction-nodejs/lists"}