2 comments (2 comments)0 reactions (0 reactions)0 assignees (0 assignees)JavaScript1,991 stars (1,991 stars)88 forks (88 forks)batch import
help wanted
Description
Similar to CRA, I've found it useful to have that supported out of the box.
Contributor guide
- Tech stack
- javascriptnodejsgraphql
- Domain
- backenddeveloper experience
- Issue type
- feature
- DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
- 2
- Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
- under 1 hour
- Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
- stale
- ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
- mostly clear
- Prerequisites
- Basic Node.jsUnderstanding of environment variables
- Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
- 60
- Research direction
- Explore the repository's main entry file (likely src/index.js or similar) to understand the server startup sequence. Look for any existing configuration loading mechanisms. Install the dotenv package and add require('dotenv').config() at the beginning of the entry point to load environment variables from a .env file. Ensure that this does not conflict with any existing configuration. Consider adding documentation in the README about using .env files.