Maintainers Spotlight

Patient Tools

Read, save, and share this guide

Use these quick tools to make this medical article easier to read, print, save, or share with a family member.

Patient Mode

Understand this article easily

Switch between simple English and easy Bangla patient notes. This is for education and does not replace a doctor consultation.

We hear about open source projects every day, but we rarely hear from the people who maintain them. Maintaining an open source project is a full-time, often thankless, job. The Maintainers Spotlight blog series is an opportunity to highlight the essential role maintainers play in...

For severe symptoms, danger signs, pregnancy, child illness, or sudden worsening, seek urgent medical care.

বাংলা রোগী নোট এখনো যোগ করা হয়নি। পোস্ট এডিটরে “RX Bangla Patient Mode” বক্স থেকে সহজ বাংলা সারাংশ যোগ করুন।

এই তথ্য শিক্ষা ও সচেতনতার জন্য। এটি ডাক্তারি পরীক্ষা, রোগ নির্ণয় বা প্রেসক্রিপশনের বিকল্প নয়।

Article Summary

We hear about open source projects every day, but we rarely hear from the people who maintain them. Maintaining an open source project is a full-time, often thankless, job. The Maintainers Spotlight blog series is an opportunity to highlight the essential role maintainers play in moving projects and communities forward. In true open source fashion, we’re hoping that sharing these experiences and learnings will help...

Educational health guideWritten for patient understanding and clinical awareness.
Reviewed content workflowUse writer and reviewer profiles for stronger trust.
Emergency safety firstUrgent warning signs are highlighted below.

Seek urgent medical care if you notice

These warning signs are general safety guidance. Local emergency numbers and clinical judgment should always come first.

  • Severe symptoms, breathing difficulty, fainting, confusion, or rapidly worsening illness.
  • New weakness, severe pain, high fever, or symptoms after a serious injury.
  • Any symptom that feels urgent, unusual, or unsafe for the patient.
1

Emergency now

Use emergency care for severe, sudden, rapidly worsening, or life-threatening symptoms.

2

See a doctor

Book a professional medical evaluation if symptoms persist, worsen, recur often, affect daily activities, or occur in a high-risk patient.

3

Learn safely

Use this article to understand possible causes, tests, treatment options, prevention, and questions to ask your clinician.

Before reading

RX Patient Tools

Use these quick guides before reading the article, or return to them when you need help preparing questions for a doctor.

Start here Choose the right pathway for symptoms, reports, medicines, or urgent warning signs. Disease article roadmap Read this topic step by step: meaning, symptoms, warning signs, diagnosis, treatment, prevention, and follow-up. Treatment planner Prepare questions about treatment choices, benefits, risks, side effects, and follow-up. Family & caregiver guide Organize symptoms, reports, medicines, questions, and follow-up safely. Nutrition & diet guide Prepare food, hydration, supplement, and medicine-timing questions safely. Prevention guide Organize risk factors, protective habits, screening, and warning signs. Recovery guide Prepare a safe plan for activity, rehabilitation, warning signs, and follow-up.

We hear about open source projects every day, but we rarely hear from the people who maintain them. Maintaining an open source project is a full-time, often thankless, job. The Maintainers Spotlight blog series is an opportunity to highlight the essential role maintainers play in moving projects and communities forward. In true open source fashion, we’re hoping that sharing these experiences and learnings will help out current and aspiring open source project maintainers.

First in this series is Kent C. Dodds, whose M-O is to improve the world with quality software, appreciating how open source has aided his growth as a developer and enables him to extend his efforts to anyone around the worldFrom managing personal workload to thoughts on community accountability, read on to learn from his experiences as a maintainer.

Tell us about your favorite open source project and what problems did it aim to solve?

I have… (too?) many. You can find them on my GitHub profile. All of my stuff is JavaScript. I have over 100 modules published to npm. I also have a lot of open source projects that are materials for teaching JavaScript, testing, and React, which people really appreciate.

Of all of my projects, Testing Library is probably the most impactful. I created the core (DOM)React, and Cypress modules. There are various other implementations of Testing Library for other frameworks and platforms that are maintained by other amazing people. Most of them are based on the core library which I wrote, and all of them are based on the philosophy I champion, which is: “The more your tests resemble the way your software is used, the more confidence they can give you.”

The problem that Testing Library solves is it allows web UI developers to write tests that give confidence that the software works as it is supposed to. It does this by encouraging good testing practices by widening the pit of success via a simple API. I have written about this at length on my blog and given several talks about this as well.

Where did the name (and logo) for your package come from?

It’s a good story! Originally, I created React Testing Library (DOM Testing Library was later extracted) and I planned on calling it “RTA” short for “React Testing Assistant.” I thought it was a pretty good name and tweeted that I was excited to announce it. Ryan Florence sarcastically responded “react-testing-library” and I thought it was just too good to pass up. Maybe it’s my dry humor side.

The logo was chosen at random. I had recently started assigning emojis to my open source projects, so I looked through my emoji picker at animals I could use for my mascot and ended up selecting the Goat. A lot of people think I was saying React Testing Library is the GOAT (Greatest Of All Time), but that was purely coincidental (or maybe it was FATE!).

What made you want to become a project maintainer?

I enjoy the fact that when I write code, I can run it as many times as I want and I don’t have to write it again to get the same value I got the first time. With open source, I can pass that value on to anyone in the world which magnifies my efforts and hopefully makes the world a better place. That’s why I participate in open source in general. Maintaining a project can feel thankless sometimes, but my experience has been filled with thanks from others and personal satisfaction for myself. Open source has had a hugely positive impact on my life.

What’s one thing your current self would tell your past self when you were starting out?

Hey Kent, so one night you’re going to be working on api-check and you’ll be in really deep with it. Your wife will ask you when you’ll be done and you’ll tell her “soon.” When that happens, just stop right there instead of staying up until 2:00 AM and keeping her up waiting for you. You’ll thank me later. And then figure out better boundaries for your open source work.

One of my biggest regrets was not learning good boundaries between my life and open source earlier.

How‌ do ‌you‌ ‌manage‌ your ‌workload and avoid burnout?‌

Now I have a personal policy that I only work on stuff that I need done (for work) or want done (for fun). If it’s something that other people need or want, I expect (and enable) them to do it themselves. This has the effect of ensuring that the only things that enter the project are things people really need and care about, encourages new contributors, and saves me loads of time.

I don’t mind ignoring people’s issues and PRs for a while. I keep in perspective that I don’t owe them anything and resist the urge to assume other people’s problems onto myself. I’ve not always been this way, but in the last few years as an open sourcerer, I’ve been able to maintain a pretty healthy relationship to my open source work.

What are the biggest obstacles you’ve had to overcome with your projects?

Inertia is really hard to beat. Enzyme was really the only game in town for testing React for several years. Other frameworks have similar de-facto testing solutions. Even though everyone who tries Testing Library agrees that it helps them ship with more confidence than using the older libraries, it’s really hard to change the defaults that people have created for themselves after so long. We’re still working on this. I’m looking forward to the day when enzyme downloads start going down each month rather than up because it means that people are finally starting to realize that they need to move their tests if they want to ship with confidence.

I realize that it seems like I’m really competitive and I just want people using my library, but I want to make it clear that’s not it. I’m interested in people making the world a better place and I just know that they can do that more effectively with what I have to offer than what they’re currently using. The biggest obstacle has been reaching people and convincing them of that. 

What events typically force action on your part as a maintainer?

For all projects I’m actively maintaining, I typically must approve every PR before it can be merged. So, PRs force my action quite often. If there were ever a Code of Conduct violation then I would take action there as well. Outside of that, not much.

How do you say no to a PR?

Like this:

Hi <insert name>,

Thanks so much for bringing this up. After our discussion about this I don’t think we’re going to do this <for well-thought-out reasons x, y, and z which we’ve already discussed>. <Re-iterate the workaround if there is one or the recommended alternative approach>. Good luck, and thanks again.

<Close issue>

How do you handle when you don’t have time anymore to support your open source project?

First, I automate as much as I can to reduce the amount of time needed. I’ve been pretty successful at doing this (my Managing Open Source Projects talk goes into this a bit). Then, I decrease my relevance by encouraging other people to help maintain the project. Then, I take time off. I basically took all of December and most of January off from OSS and the project chugged along just fine. It just takes preparation for your eventual fade into irrelevance or disinterest.

I had one project a while ago where I didn’t prepare for this very well and I didn’t have anyone who was really committed to the project as a maintainer. Honestly it may have been that it was a library written in AngularJS and most people were moving on to Angular 2 or React like me, so that might have had something to do with it, but either way I just had to deprecate the project and archive the repo because nobody stepped up to maintain it. That was unfortunate, but honestly that’s the best thing to do in that situation. If someone really needs it, they can fallback on what they would have done if it hadn’t existed in the first place (write the code themselves), which is fine. In fact, they can just fork it so they’re better off anyway.

What are the criteria to define a successor and how do you measure quality and success for a maintainer?

I’ve transferred ownership of quite a few projects. Many of them still live on today with solid maintainers (a great example of this is allcontributors.org).

I used to pretty much say once someone cared more about a project than I did, I would hand the project over to him or her. But ever since the event-stream incident, I’ve tried to be more careful about that and unless I’ve developed a lot of trust with someone, I won’t hand over the publishing rights and would rather deprecate and archive the project and encourage them to fork and publish under a different name if they want to continue maintaining it.

In summary, my criteria for a successor is they must:

  • Use the project actively
  • Care as much, or more, about the project than I do
  • Have a similar vision and philosophy for the project (though if I’m moving on and not planning on using the project anymore, this matters less to me)
  • Have my trust (which is hard to gauge and build, but when you know you know)

What do you think about accountability in the open source community? Who is doing it best?

I feel like once you install an open source project you are responsible for that code. If you have problems with it, they are just as much your problems as anyone else’s (more-so, in fact). For the projects that I depend on, I feel like I’m accountable for any issues I come up against and anything the maintainers do to fix those is a gift they’re giving to me.

As a maintainer, I feel like it’s important to communicate intent with users of the project and it would be unwise and irresponsible to encourage people to use your project, investing in learning what you’ve built and build up that trust, just to throw it away by doing something silly

Doctor visit helper

Prepare before seeing a doctor

A simple rural-patient checklist to help you explain symptoms clearly, ask better questions, and avoid unsafe self-treatment.

Safety note: This is not a prescription or diagnosis. For severe symptoms, pregnancy danger signs, children with serious illness, chest pain, breathing difficulty, stroke-like weakness, or major injury, seek urgent care.

Which doctor may help?

Start with a registered doctor or the nearest qualified health center.

What to tell the doctor

  • Write when the problem started and how it changed.
  • Bring old prescriptions, investigation reports, and current medicines.
  • Write allergies, pregnancy status, diabetes, kidney/liver disease, and major past illnesses.
  • Bring one family member if the patient is weak, elderly, confused, or a child.

Questions to ask

  • What is the most likely cause of my symptoms?
  • Which danger signs mean I should go to hospital quickly?
  • Which tests are necessary now, and which can wait?
  • How should I take medicines safely and what side effects should I watch for?
  • When should I come for follow-up?

Tests to discuss

  • Vital signs: temperature, pulse, blood pressure, oxygen saturation
  • Basic physical examination by a clinician
  • CBC, urine test, blood sugar, or imaging only when clinically needed

Avoid these mistakes

  • Do not use antibiotics, steroid tablets/injections, or strong painkillers without proper medical advice.
  • Do not hide pregnancy, kidney disease, ulcer, allergy, or blood thinner use.
  • Do not delay emergency care when danger signs are present.

Medicine safety and first-aid guide

This section is for patient education only. It does not replace a doctor, pharmacist, or emergency care.

Safe first steps

  • Avoid heavy lifting, sudden bending, and prolonged bed rest.
  • Use comfortable posture and gentle movement as tolerated.
  • Discuss physiotherapy, X-ray, or MRI only when clinically needed.

OTC medicine safety

  • For mild back pain, pain-relief medicine may be discussed with a doctor or pharmacist.
  • Avoid repeated painkiller use if you have kidney disease, stomach ulcer, uncontrolled blood pressure, or are taking blood thinners.

Avoid these mistakes

  • Do not start antibiotics without a proper medical decision.
  • Do not use steroid tablets or injections casually for quick relief.
  • Do not delay emergency care because of home remedies.

Get urgent help if

  • Back pain with leg weakness, numbness around private area, loss of urine/stool control, fever, cancer history, or major injury needs urgent care.
Medicine names, dose, and timing must be decided by a qualified clinician or pharmacist after checking age, pregnancy, allergy, other diseases, and current medicines.

For rural patients and family caregivers

Patient health record and symptom diary

Write your symptoms, medicines already taken, test results, and questions before visiting a doctor. This note stays on your device unless you print or copy it.

Doctor to discuss: Doctor / qualified healthcare provider
Tests to discuss with doctor
  • Basic vital signs: temperature, pulse, blood pressure, oxygen level if needed
  • Relevant blood, urine, imaging, or specialist tests only after clinical assessment
Questions to ask
  • What is the most likely cause of my symptoms?
  • Which warning signs mean I should go to emergency care?
  • Which tests are really needed now?
  • Which medicines are safe for my age, pregnancy status, allergy, kidney/liver/stomach condition, and current medicines?

Emergency warning signs such as chest pain, severe breathing difficulty, sudden weakness, confusion, severe dehydration, major injury, or loss of bladder/bowel control need urgent medical care. Do not wait for online information.

Safe pathway to proper treatment

Care roadmap for: Maintainers Spotlight

Use this simple roadmap to understand the next safe steps. It is educational and does not replace examination by a doctor.

Go to emergency care if you notice:
  • Severe or rapidly worsening symptoms
  • Breathing difficulty, chest pain, fainting, confusion, severe weakness, major injury, or severe dehydration
Doctor / service to discuss: Qualified healthcare provider; specialist depends on symptoms and examination.
  1. Step 1

    Check danger signs first

    If danger signs are present, seek emergency care and do not wait for online information.

  2. Step 2

    Record the symptom story

    Write when symptoms started, severity, medicines already taken, allergies, pregnancy status, and test results.

  3. Step 3

    Visit a qualified clinician

    A doctor, nurse, or qualified healthcare provider can examine you and decide which tests or treatment are needed.

  4. Step 4

    Do only useful tests

    Do tests after clinical assessment. Avoid unnecessary tests, random antibiotics, or repeated medicines without diagnosis.

  5. Step 5

    Follow up and return early if worse

    If symptoms worsen, new warning signs appear, or treatment is not helping, return for review quickly.

Rural patient practical tips
  • Take a written symptom diary and all previous prescriptions/test reports.
  • Do not hide medicines already taken, even herbal or over-the-counter medicines.
  • Ask which warning signs mean urgent referral to hospital.

This roadmap is for education. A real diagnosis and treatment plan requires history, examination, and clinical judgment.

RX Patient Help

Ask a health question safely

Write your symptom story. A health professional or site editor can review it before any answer is prepared. This box is not for emergency care.

Emergency first: Severe chest pain, breathing trouble, unconsciousness, stroke signs, severe injury, heavy bleeding, or rapidly worsening symptoms need urgent local medical care now.

Frequently Asked Questions

Tell us about your favorite open source project and what problems did it aim to solve?

I have… (too?) many. You can find them on my GitHub profile. All of my stuff is JavaScript. I have over 100 modules published to npm. I also have a lot of open source projects that are materials for teaching JavaScript, testing, and React, which people really appreciate. Of all of my projects, Testing Library is probably the most impactful. I created the core (DOM), React, and Cypress modules. There are various other implementations of Testing Library for other frameworks and platforms that are maintained by other…

Where did the name (and logo) for your package come from?

It’s a good story! Originally, I created React Testing Library (DOM Testing Library was later extracted) and I planned on calling it “RTA” short for “React Testing Assistant.” I thought it was a pretty good name and tweeted that I was excited to announce it. Ryan Florence sarcastically responded “react-testing-library” and I thought it was just too good to pass up. Maybe it’s my dry humor side. The logo was chosen at random. I had recently started assigning emojis to my open…

What made you want to become a project maintainer?

I enjoy the fact that when I write code, I can run it as many times as I want and I don’t have to write it again to get the same value I got the first time. With open source, I can pass that value on to anyone in the world which magnifies my efforts and hopefully makes the world a better place. That’s why I participate in open source in general. Maintaining a project can feel thankless sometimes, but…

What’s one thing your current self would tell your past self when you were starting out?

Hey Kent, so one night you’re going to be working on api-check and you’ll be in really deep with it. Your wife will ask you when you’ll be done and you’ll tell her “soon.” When that happens, just stop right there instead of staying up until 2:00 AM and keeping her up waiting for you. You’ll thank me later. And then figure out better boundaries for your open source work. One of my biggest regrets was not learning good boundaries between my…

How‌ do ‌you‌ ‌manage‌ your ‌workload and avoid burnout?‌ Now I have a personal policy that I only work on stuff that I need done (for work) or want done (for fun). If it’s something that other people need or want, I expect (and enable) them to do it themselves. This has the effect of ensuring that the only things that enter the project are things people really need and care about, encourages new contributors, and saves me loads of time. I don’t mind ignoring people’s issues and PRs for a while. I keep in perspective that I don’t owe them anything and resist the urge to assume other people’s problems onto myself. I’ve not always been this way, but in the last few years as an open sourcerer, I’ve been able to maintain a pretty healthy relationship to my open source work. What are the biggest obstacles you’ve had to overcome with your projects?

Inertia is really hard to beat. Enzyme was really the only game in town for testing React for several years. Other frameworks have similar de-facto testing solutions. Even though everyone who tries Testing Library agrees that it helps them ship with more confidence than using the older libraries, it’s really hard to change the defaults that people have created for themselves after so long. We’re still working on this. I’m looking forward to the day when enzyme downloads start going…

What events typically force action on your part as a maintainer?

For all projects I’m actively maintaining, I typically must approve every PR before it can be merged. So, PRs force my action quite often. If there were ever a Code of Conduct violation then I would take action there as well. Outside of that, not much.

How do you say no to a PR?

Like this: Hi <insert name>, Thanks so much for bringing this up. After our discussion about this I don’t think we’re going to do this <for well-thought-out reasons x, y, and z which we’ve already discussed>. <Re-iterate the workaround if there is one or the recommended alternative approach>. Good luck, and thanks again. <Close issue>

How do you handle when you don’t have time anymore to support your open source project?

First, I automate as much as I can to reduce the amount of time needed. I’ve been pretty successful at doing this (my Managing Open Source Projects talk goes into this a bit). Then, I decrease my relevance by encouraging other people to help maintain the project. Then, I take time off. I basically took all of December and most of January off from OSS and the project chugged along just fine. It just takes preparation for your eventual fade…

References

Add references, clinical guidelines, textbooks, journal articles, or trusted medical sources here. You can edit this area from the RX Article Professional Blocks panel.