Skip to content

Commit f59f8f2

Browse files
Merge pull request #4378 from RedYetiDev/patch-1
Add a guide on how to ask a good question
2 parents 5e166b5 + 03ead01 commit f59f8f2

File tree

1 file changed

+100
-21
lines changed

1 file changed

+100
-21
lines changed

README.md

+100-21
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,127 @@
1+
# Node.js Help
2+
13
<p align="center">
2-
<a href="https://nodejs.org/">
34
<picture>
45
<source media="(prefers-color-scheme: dark)" srcset="https://nodejs.org/static/logos/nodejsStackedLight.svg">
56
<img src="https://nodejs.org/static/logos/nodejsStackedDark.svg" width="200px">
67
</picture>
7-
</a>
8-
<h1 align="center">Help</h1>
98
</p>
109

11-
Need help with Node.js? You've come to the right place!
10+
## Welcome to Node.js Help!
11+
12+
Whether you're a beginner or an experienced developer, Node.js Help is here to assist you with all your Node.js questions and concerns.
1213

1314
## Install
1415

15-
Check out [this wiki](https://github.com/nodejs/help/wiki/Installation)
16-
to learn how to install Node.js via binary archive on Linux and AIX.
16+
To install Node.js, check out [this wiki](https://github.com/nodejs/help/wiki/Installation) to learn how to install Node.js via binary archive on Linux and AIX.
1717

18-
## Participate
18+
## How to Ask a Good Question
1919

20-
You can participate by asking or answering open questions present
21-
in the [issues section](https://github.com/nodejs/help/issues).
20+
### 1. **Be Specific**
21+
- **Provide Context:** Explain the background or context of your question. This helps others understand your problem or inquiry better.
22+
- **Avoid Ambiguity:** Clearly state what you're asking about. Vague questions can lead to misunderstandings or irrelevant responses.
2223

23-
#### Note
24+
### 2. **Use Clear Language**
25+
- **Avoid Jargon:** If your question involves technical terms, ensure they are explained or defined.
26+
- **Be Concise:** Keep your question brief and to the point. Long-winded questions can be confusing and may lose the reader's interest.
27+
28+
### 3. **State Your Goal**
29+
- **Clarify Your Objective:** Explain why you're asking the question and what you hope to achieve by getting an answer.
30+
- **Express Your Expectations:** Let others know what kind of answer you're looking for.
31+
32+
### 4. **Provide Relevant Details**
33+
- **Include Relevant Information:** Give details that are pertinent to your question. This could include error messages, steps you've already taken, or relevant background information.
34+
- **Exclude Irrelevant Details:** Avoid cluttering your question with unnecessary information that may distract from the main issue.
35+
36+
### 5. **Be Respectful**
37+
- **Be Polite:** Remember to use polite language and tone, even if you're frustrated or facing challenges.
38+
- **Appreciate Responses:** When someone takes the time to answer your question, thank them for their help, even if the answer doesn't fully solve your problem.
39+
40+
### 6. **Check for Duplicates**
41+
- **Search Before Asking:** Before posting your question, search to see if it has already been asked and answered. Duplicate questions can clutter forums and waste people's time.
42+
43+
### 7. **Format Appropriately**
44+
- **Use Proper Formatting:** If you're asking your question on a platform that supports formatting (like a forum or Q&A site), use formatting to make your question more readable. Use headers, lists, and code blocks as needed.
45+
46+
### 8. **Proofread Your Question**
47+
- **Check for Errors:** Proofread your question before posting to ensure clarity and correctness. Typos or grammar mistakes can make your question harder to understand.
48+
49+
### 9. **Be Open to Feedback**
50+
- **Accept Criticism:** If someone suggests improvements to your question, consider their feedback constructively. It can help you ask better questions in the future.
51+
52+
### 10. **Follow Up**
53+
- **Engage with Responses:** Once you receive answers, engage with them. Ask for clarification if needed, and provide feedback on whether the answers were helpful.
54+
55+
## What to Ask:
56+
57+
### 1. Clear and Specific Questions:
58+
- How can I achieve _\[specific task]_ in my Node.js application?
59+
- What is the best way to handle _\[specific problem]_ in Node.js?
60+
- Can someone help me understand how _\[specific feature]_ in Node.js works?
2461

25-
When inserting your code use 3 backticks, followed by `js` as shown below:
62+
### 2. Troubleshooting Questions:
63+
- I'm encountering _\[specific error]_ when trying to _\[specific action]_. How can I resolve this?
64+
- What could be causing _\[specific behavior]_ in my Node.js code?
2665

27-
![node-js](assets/backtick.png)
66+
### 3. Conceptual Questions:
67+
- Can someone explain the difference between _\[concept A]_ and _\[concept B]_ in Node.js?
68+
- How does _\[specific module or feature]_ in Node.js work under the hood?
2869

70+
## What NOT to Ask:
71+
72+
### 1. General Programming Questions:
73+
- How do I write a for loop in JavaScript?
74+
- What is HTML, and how does it work?
75+
76+
### 2. Personal Debugging:
77+
- Would someone be able to debug my entire Node.js project for me?
78+
- Why isn't my code working? (without providing any specific details or code snippets)
79+
80+
### 3. Unsupported or External Package Issues:
81+
- I need help with a third-party package (not related to Node.js core). Can someone help?
82+
- Why doesn't this external package work in my Node.js project?
83+
84+
### 4. Opinion-Based Questions:
85+
- What is the best Node.js framework?
86+
- Which is better, callback functions or Promises?
87+
88+
### 5. Duplicate Questions:
89+
- I didn't find an answer to my question, but it's similar to this other question. Can someone help me anyway?
90+
- Why hasn't anyone answered my question yet? (without considering it might be a duplicate)
91+
92+
### 6. Requests for Complete Solutions:
93+
- Can someone write the entire code for my project?
94+
- I need help with my homework. Can someone do it for me?
95+
96+
### 7. Unrelated or Off-Topic Questions:
97+
- What's the weather like in New York today?
98+
- Can someone help me with my personal relationship issues?
99+
100+
### 8. Extremely Broad Questions:
101+
- How do I become a Node.js expert?
102+
- What can I do with Node.js?
103+
104+
#### Note
105+
106+
When inserting your code, use 3 backticks, followed by `js` as shown below:
29107
````
30108
```js
31109
console.log('happy coding!');
32110
```
33111
````
34-
35-
It gets rendered as such:
36112
```js
37113
console.log('happy coding!');
38114
```
39115

40-
## Chat
116+
## Participate
117+
118+
You can participate by asking or answering open questions in the [issues section](https://github.com/nodejs/help/issues).
41119

42-
If you would prefer to get help via live chat rather than the issue tracker
43-
in this repository, you can try:
120+
## External Links
44121

45-
* [#nodejs](https://openjs-foundation.slack.com/archives/CK9Q4MB53) channel on the OpenJS Foundation Slack ([join here](https://slack-invite.openjsf.org/))
46-
* [#node.js channel on libera.chat](https://web.libera.chat?channels=node.js&uio=d4)
47-
* [Node.js Slack Community](https://node-js.slack.com/)
48-
* To register: [nodeslackers.com](https://www.nodeslackers.com/)
122+
- [Node.js Official Website](https://nodejs.org/)
123+
- [Node.js Documentation](https://nodejs.org/docs/latest/api/)
124+
- [Node.js GitHub Repository](https://github.com/nodejs/node)
125+
- [Node.js Slack](https://node-js.slack.com/) *([join here](https://www.nodeslackers.com/))*
126+
- [#nodejs channel](https://openjs-foundation.slack.com/archives/CK9Q4MB53) on the OpenJS Foundation Slack *([join here](https://slack-invite.openjsf.org/))*
127+
- [#node.js channel on libera.chat](https://web.libera.chat?channels=node.js&uio=d4)

0 commit comments

Comments
 (0)