{"id":19999796,"url":"https://github.com/xiaomuzhu/elemefe-node-interview","last_synced_at":"2026-03-05T01:31:18.327Z","repository":{"id":101267105,"uuid":"101273075","full_name":"xiaomuzhu/ElemeFE-node-interview","owner":"xiaomuzhu","description":"饿了么Node.JS面试题解答","archived":false,"fork":false,"pushed_at":"2018-05-22T03:56:52.000Z","size":111,"stargazers_count":321,"open_issues_count":4,"forks_count":50,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-10-23T06:55:37.809Z","etag":null,"topics":["blog","interview","node"],"latest_commit_sha":null,"homepage":null,"language":null,"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/xiaomuzhu.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":"2017-08-24T08:38:52.000Z","updated_at":"2025-09-12T15:40:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"2e0439f2-caed-4f3a-9bf0-98a0452dc2a6","html_url":"https://github.com/xiaomuzhu/ElemeFE-node-interview","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xiaomuzhu/ElemeFE-node-interview","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomuzhu%2FElemeFE-node-interview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomuzhu%2FElemeFE-node-interview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomuzhu%2FElemeFE-node-interview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomuzhu%2FElemeFE-node-interview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xiaomuzhu","download_url":"https://codeload.github.com/xiaomuzhu/ElemeFE-node-interview/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomuzhu%2FElemeFE-node-interview/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30104281,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T01:06:53.091Z","status":"ssl_error","status_checked_at":"2026-03-05T01:02:35.679Z","response_time":59,"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":["blog","interview","node"],"created_at":"2024-11-13T05:12:51.065Z","updated_at":"2026-03-05T01:31:18.234Z","avatar_url":"https://github.com/xiaomuzhu.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 如何通过饿了么 Node.js 面试(解答)\n\n\u003e *听说饿了么被阿里收购了,饿了么虽然没了,文档还是要更的...*\n\n本项目是基于[饿了么node面试](https://github.com/ElemeFE/node-interview)而来,对上述教程中提出的问题进行了解答,本项目是为了记录本人对Node知识点的总结,没有权威性如有错误欢迎指出.\n\n## 导读\n\n本项目虽然是基于**饿了么Node面试教程**而来,但是在此基础上做了拓展,比如在**JS基础**部分加入了**面向对象** **原型链**等重要知识.\n\n\u003e 由于原项目包括*知识点*和*常见问题*两个部分,我们会先整理知识点部分的文字,再在后面补充常见问题答案.\n\n## [Js 基础问题]\n\n\u003e 目前还缺少*Node内存*与*ES6*部分.\n\n* [`[Basic]` 类型判断](/JavaScript基础/JavaScript基本类型.md)\n* [`[Basic]` 预解释](/JavaScript基础/javascript“预解释”.md)\n* [`[Basic]` 作用域](/JavaScript基础/javascript“作用域与闭包“.md)\n* [`[Basic]` 原型](/JavaScript基础/javascript原型.md)\n* [`[Basic]` this](/JavaScript基础/javascript中的this.md)\n* [`[Basic]` 属性](/JavaScript基础/javascript属性.md)\n* [`[Basic]` 传递引用](/JavaScript基础/javascript按什么传递.md)\n* [`[Basic]` 深克隆](/JavaScript基础/javascript实现深克隆.md)\n* [`[Basic]` 实现不可变数据](/JavaScript基础/JavaScript中的不可变数据.md)\n* [`[Basic]` Proxy 与Object.defineProperty 的双向绑定对比](/JavaScript基础/Proxy.md)\n\n## 事件/异步\n\n* [`[Basic]` Promise](https://github.com/xieranmaya/blog/issues/3)\n* [`[Basic]` Events (事件机制)](/异步/Event.md)\n* [`[Basic]` 实现一个Event](/异步/如何实现一个Event.md)\n* [`[Basic]` 阻塞/异步](/异步/异步机制.md)\n\n## [IO]\n\n* [`[Doc]` Buffer详解](/IO/Buffer.md)\n* [`[Doc]` Stream (流)](/IO/stream.md)\n\n## [进程]\n\n* [`[Doc]` 类Unix系统中的进程](/Process/Unix-Process.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxiaomuzhu%2Felemefe-node-interview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxiaomuzhu%2Felemefe-node-interview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxiaomuzhu%2Felemefe-node-interview/lists"}