Complete Node.Js Secrets & Tips for Professionals
Total Page:16
File Type:pdf, Size:1020Kb
Node.js CompleteComplete Tips & Secrets for Professionals Node.js Tips & Secrets for Professionals 200+ pages of professional hints and tricks Disclaimer This is an unocial free book created for educational purposes and is GoalKicker.com not aliated with ocial Node.js group(s) or company(s). Free Programming Books All trademarks and registered trademarks are the property of their respective owners Contents About ................................................................................................................................................................................... 1 Chapter 1: Getting started with Node.js ............................................................................................................ 2 Section 1.1: Hello World HTTP server ........................................................................................................................... 3 Section 1.2: Hello World command line ....................................................................................................................... 4 Section 1.3: Hello World with Express .......................................................................................................................... 5 Section 1.4: Installing and Running Node.js ................................................................................................................. 6 Section 1.5: Debugging Your NodeJS Application ...................................................................................................... 6 Section 1.6: Hello World basic routing ......................................................................................................................... 7 Section 1.7: Hello World in the REPL ............................................................................................................................ 8 Section 1.8: Deploying your application online ........................................................................................................... 8 Section 1.9: Core modules ............................................................................................................................................. 8 Section 1.10: TLS Socket: server and client ................................................................................................................ 13 Section 1.11: How to get a basic HTTPS web server up and running! ..................................................................... 15 Chapter 2: npm ............................................................................................................................................................ 17 Section 2.1: Installing packages ................................................................................................................................. 19 Section 2.2: Uninstalling packages ............................................................................................................................ 22 Section 2.3: Setting up a package configuration ..................................................................................................... 23 Section 2.4: Running scripts ....................................................................................................................................... 23 Section 2.5: Basic semantic versioning ..................................................................................................................... 24 Section 2.6: Publishing a package ............................................................................................................................. 25 Section 2.7: Removing extraneous packages .......................................................................................................... 25 Section 2.8: Listing currently installed packages ..................................................................................................... 25 Section 2.9: Updating npm and packages ............................................................................................................... 26 Section 2.10: Scopes and repositories ....................................................................................................................... 26 Section 2.11: Linking projects for faster debugging and development .................................................................. 26 Section 2.12: Locking modules to specific versions ................................................................................................. 27 Section 2.13: Setting up for globally installed packages ......................................................................................... 27 Chapter 3: Web Apps With Express .................................................................................................................... 28 Section 3.1: Getting Started ......................................................................................................................................... 28 Section 3.2: Basic routing ........................................................................................................................................... 29 Section 3.3: Modular express application ................................................................................................................. 30 Section 3.4: Using a Template Engine ....................................................................................................................... 31 Section 3.5: JSON API with ExpressJS ....................................................................................................................... 33 Section 3.6: Serving static files ................................................................................................................................... 33 Section 3.7: Adding Middleware ................................................................................................................................. 34 Section 3.8: Error Handling ......................................................................................................................................... 34 Section 3.9: Getting info from the request ................................................................................................................ 35 Section 3.10: Error handling in Express ...................................................................................................................... 36 Section 3.11: Hook: How to execute code before any req and after any res ........................................................ 36 Section 3.12: Setting cookies with cookie-parser ..................................................................................................... 36 Section 3.13: Custom middleware in Express ............................................................................................................ 37 Section 3.14: Named routes in Django-style ............................................................................................................. 37 Section 3.15: Hello World ............................................................................................................................................. 38 Section 3.16: Using middleware and the next callback ............................................................................................ 38 Section 3.17: Error handling ........................................................................................................................................ 40 Section 3.18: Handling POST Requests ...................................................................................................................... 41 Chapter 4: Filesystem I/O ...................................................................................................................................... 42 Section 4.1: Asynchronously Read from Files ........................................................................................................... 42 Section 4.2: Listing Directory Contents with readdir or readdirSync ..................................................................... 42 Section 4.3: Copying files by piping streams ............................................................................................................ 43 Section 4.4: Reading from a file synchronously ...................................................................................................... 44 Section 4.5: Check Permissions of a File or Directory ............................................................................................. 44 Section 4.6: Checking if a file or a directory exists .................................................................................................. 45 Section 4.7: Determining the line count of a text file ............................................................................................... 45 Section 4.8: Reading a file line by line ....................................................................................................................... 46 Section 4.9: Avoiding race conditions when creating or using an existing directory ........................................... 46 Section 4.10: Cloning a file using streams ................................................................................................................. 46 Section 4.11: Writing to a file using writeFile or writeFileSync ................................................................................. 47 Section 4.12: Changing contents