💡 [FEATURE] - Build a single script in the home directory for development and production run #9
Labels
enhancement
New feature or request
good first issue
Good for newcomers
hacktoberfest
Hacktoberfest
hacktoberfest2023
Hacktoberfest 2023
hacktoberfest-accepted
Hacktoberfest Accepted
help wanted
Extra attention is needed
Start Date
No response
Implementation PR
No response
Reference Issues
No response
Summary
There is package.json file with prettier in the home directory which runs on
npm run format
andnpm run format:fix
Similarly, create 2 files in the home directory called as
dev.js
andprod.js
and then add the command in package.json to run them with
npm run dev
andnpm run build
respectivelyThose files respectively should build all the installation steps with node child process to run it and also log in the terminal of all the output. Also, add relevant error handling.
Make use of only one terminal window.
For eg: For the dev environment, once you add
npm run dev
it should run those commands, and where you need to run both the backend and frontend.
For every backend command, add
BACKEND: <the command>
and use chalk package to color the BACKEND word.for the output of the backend ( logs ), add
BACKEND: <the terminal output>
and similarly use chalk package with different color.Similarly for the frontend as well, with 2 more chalk colors.
Basic Example
Drawbacks
Unresolved questions
No response
The text was updated successfully, but these errors were encountered: