https://github.com/pana/nodejs-interview
Common Node.js interview questions
https://github.com/pana/nodejs-interview
Last synced: 7 months ago
JSON representation
Common Node.js interview questions
- Host: GitHub
- URL: https://github.com/pana/nodejs-interview
- Owner: Pana
- Created: 2015-08-07T14:37:57.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-09T01:04:42.000Z (about 10 years ago)
- Last Synced: 2025-01-28T21:47:16.992Z (8 months ago)
- Size: 133 KB
- Stars: 11
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Node.js interview
=====
Node.js 的开发语言为 JavaScript, 一个优秀的 Noder, 必须首先是一个很好的 Jser. JS 相关的面试题请参看其他网络资源, 这里只聚焦 Node 相关面试题.#### exports 和 module.exports 的区别和关系 ?
#### 如何避免回调地狱 ? 实现异步控制的常见方法?
#### 事件循环的机制是怎样的 ?
#### 什么是 error-first callback, 他的特点是什么 ?
#### 错误处理的常见方法有哪些 ?
#### Node.js 优点(特性), 缺点, 以及如何弥补 ?
#### Node.js 是如何实现高效的 ?
#### Node.js 适合用于什么开发, 为什么 ?
#### Libuv 是什么, 他跟 Node 是什么关系 ?
#### 高性能 Node.js 开发需要注意的几个问题 ?