1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-01 06:50:26 +02:00

Adding console.* and more recources to 106-nodejs-command-line-apps (#6098)

* Adding console.* and more recources to 106-nodejs-command-line-apps

* Update src/data/roadmaps/nodejs/content/106-nodejs-command-line-apps/101-printing-output/index.md

---------

Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>
This commit is contained in:
Abdallah Gaber
2024-07-08 13:24:59 +03:00
committed by GitHub
parent d09962b6a3
commit 8b82746676

View File

@@ -1,3 +1,7 @@
# Printing output
Printing output in Node.js command-line applications is a fundamental aspect of communicating with users and displaying information. You can print output using `process.stdout`, `process.stderr` or simple `console.*` functions.
Visit the following resources to learn more:
- [@official@Output to the command line using Node.js](https://nodejs.org/en/learn/command-line/output-to-the-command-line-using-nodejs)