dinesh24murali / learn_repo

The repo contains notes and code regarding all my learning for NodeJS certification
0 stars 0 forks source link

List of things to learn in NodeJS #1

Open dinesh24murali opened 3 months ago

dinesh24murali commented 3 months ago
  1. Buffer and Streams - Node.js Buffer API’s, Incremental Processing, Transforming Data, Connecting Streams
  2. Control flow - Managing asynchronous operations, Control flow abstractions
  3. Child Processes - Spawning or Executing child processes, Child process configuration
  4. Diagnostics - Debugging Node.js, Basic performance analysis
  5. Error Handling - Common patterns, Handling errors in various scenarios
  6. Node.js CLI - Node executable command line flags
  7. Events - The event system, Building event emitters, and Consuming event emitters
  8. File System - Input/output, Watching
  9. JavaScript Prerequisites - Language fundamentals, Scoped to core language features introduced since EcmaScript 1 and still heavily used today
  10. Module system - CommonJS Module System only
  11. Process/Operating System - Controlling the process, Getting system data
  12. Package.json - Package configuration, Dependency management
  13. Unit Testing - Using assertions, Testing synchronous code, Testing asynchronous code
dinesh24murali commented 1 month ago

The transform stream can convert readStream to writeStream and vice versa. Pipes can not be stopped in case an error occurs. But Pipelines can print out the error when it occurs. Need to verify