├── .github └── ISSUE_TEMPLATE.md ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | *感謝使用 Node.js Taiwan AMA,以下附上簡單提問範例供參考,請把內容改成你自己遇到的問題* 2 | 3 | 4 | 5 | # 目的 6 | 7 | <<我希望做一個 xxxx ,達成 oooo 的效果>> 8 | 9 | # 使用的工具 10 | 11 | <<我在 Mac 10.10 下使用 npm 安裝 node.js 5.1.0 >> 12 | 13 | # 操作流程 14 | 15 | <<我下了 xxx 指令,輸入了下面的程式碼,>> 16 | 17 | # 遇到的問題 18 | 19 | <<它顯示 xxx is undefined>> 20 | 21 | # 嘗試過的解法 22 | 23 | <<我嘗試過把 xxxx 改成 oooo ,但還是遇到一樣的錯誤>> 24 | 25 | # 程式碼 26 | 27 | 下面附上我的程式碼以及我遇到的錯誤 28 | 29 | 程式碼 30 | 31 | ```js 32 | console.log(hello world) 33 | ``` 34 | 35 | 錯誤 36 | 37 | ``` 38 | ReferenceError: helloworld is not defined 39 | at repl:1:13 40 | at REPLServer.defaultEval (repl.js:248:27) 41 | at bound (domain.js:280:14) 42 | at REPLServer.runBound [as eval] (domain.js:293:12) 43 | at REPLServer. (repl.js:412:12) 44 | at emitOne (events.js:82:20) 45 | at REPLServer.emit (events.js:169:7) 46 | at REPLServer.Interface._onLine (readline.js:210:10) 47 | at REPLServer.Interface._line (readline.js:549:8) 48 | at REPLServer.Interface._ttyWrite (readline.js:826:14) 49 | ``` 50 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 NodeJS Taiwan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ask me anything! 2 | 3 | 這裡是 Node.js Taiwan 提問區。您可以在這裡提問,並且也歡迎轉貼到各地,讓大家可以一起來協助解決問題! 4 | 5 | [立刻問問題](https://github.com/nodejs-tw/ama/issues/new) 6 | 7 | 8 | [傳道、授業、解惑 入口](https://github.com/nodejs-tw/ama/issues) 9 | 10 | --------------------------------------------------------------------------------