├── .github ├── ISSUE_TEMPLATE │ ├── help.md │ └── questions---help.md └── stale.yml ├── ISSUE_TEMPLATE.md └── README.md /.github/ISSUE_TEMPLATE/help.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Help 3 | about: If you have any questions regarding Fastify this is the right place to ask 4 | title: Help 5 | labels: help wanted 6 | assignees: '' 7 | 8 | --- 9 | 10 | 17 | 18 | ## 💬 Question here 19 | 20 | a clear and concise description of your question 21 | 22 | ```js 23 | // example codes if any 24 | ```` 25 | 26 | 27 | If possible add a link to sample codes for error reproduction (github or replit) 28 | 29 | 32 | 33 | ## Your Environment 34 | 35 | - *node version*: 10, 12, 13 36 | - *fastify version*: >=2.0.0 37 | - *os*: Mac, Windows, Linux 38 | - *any other relevant information* 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions---help.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Questions / Help 3 | about: If you have any questions regarding Fastify this is the right place to ask 4 | title: Help 5 | labels: help wanted 6 | assignees: '' 7 | 8 | --- 9 | 10 | 17 | 18 | ## 💬 Question here 19 | 20 | a clear and concise description of your question 21 | 22 | ```js 23 | // example codes if any 24 | ```` 25 | 26 | 27 | 28 | If possible add a link to sample codes for error reproduction (github or replit) 29 | 30 | 33 | 34 | ## Your Environment 35 | 36 | - *node version*: 10, 12, 13 37 | - *fastify version*: >=2.0.0 38 | - *os*: Mac, Windows, Linux 39 | - *any other relevant information* 40 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 15 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - "good first issue" 8 | # Label to use when marking an issue as stale 9 | staleLabel: stale 10 | # Comment to post when marking an issue as stale. Set to `false` to disable 11 | markComment: > 12 | This issue has been automatically marked as stale because it has not had 13 | recent activity. It will be closed if no further activity occurs. Thank you 14 | for your contributions. 15 | # Comment to post when closing a stale issue. Set to `false` to disable 16 | closeComment: false 17 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | #### You have already researched for similar issues? 2 | It's not uncommon that somebody already opened an issue or in best case it's already fixed but not merged. That's the reason why you should [search](https://github.com/fastify/fastify/issues) at first before submitting a new one. 3 | 4 | #### What are you trying to achieve, or the steps to reproduce? 5 | 6 | Describe your issue here, include as many details as necessary to reproduce the issue, 7 | or implement a missing functionality. If you are reporting a bug, you will get a faster response 8 | if you submit a pull request with a failing test. 9 | 10 | ```js 11 | // Wrap code in markdown source tags 12 | ``` 13 | 14 | #### What was the result you received? 15 | 16 | #### What did you expect? 17 | 18 | #### Context 19 | 20 | * *node version*: 4,5,6,7,8,9 21 | * *fastify version*: >=0.37.0 22 | * *os*: Mac, Windows 23 | * *any other relevant information*: 24 | 25 | **Please read this entire template before posting any issue. If you ignore these instructions 26 | and post an issue here that does not follow the instructions, your issue might be closed, 27 | locked, and assigned the `missing discussion` label.** 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | Need help with Fastify? You've come to the right place!
7 | ### [Ask a question!](https://github.com/fastify/help/issues/new) 8 | 9 | 10 | #### Chat Resources 11 | 12 | If you would prefer to get help via live chat rather than the issue tracker in 13 | this repository, you can try our [Discord community](https://discord.gg/D3FZYPy)! 14 | 15 | #### Unofficial stackoverflow tag 16 | 17 | Follow fastify tag on [stackoverflow](https://stackoverflow.com/questions/tagged/fastify). 18 | --------------------------------------------------------------------------------