ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب Node.js Cookbook: Practical recipes for building server-side web applications with Node.js 22

دانلود کتاب کتاب آشپزی node.js: دستور العمل های عملی برای ساخت برنامه های وب سمت سرور با node.js 22

Node.js Cookbook: Practical recipes for building server-side web applications with Node.js 22

مشخصات کتاب

Node.js Cookbook: Practical recipes for building server-side web applications with Node.js 22

ویرایش: 5 
نویسندگان:   
سری:  
ISBN (شابک) : 1804619817, 9781804619810 
ناشر: Packt Publishing 
سال نشر: 2024 
تعداد صفحات: 456 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 51 مگابایت 

قیمت کتاب (تومان) : 59,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 10


در صورت تبدیل فایل کتاب Node.js Cookbook: Practical recipes for building server-side web applications with Node.js 22 به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب کتاب آشپزی node.js: دستور العمل های عملی برای ساخت برنامه های وب سمت سرور با node.js 22 نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی درمورد کتاب به خارجی



فهرست مطالب

Cover
Title Page
Copyright and Credits
Contributors
Table of Contents
Preface
Chapter 1: Introducing Node.js 22
	Technical requirements
	Installing Node.js 22 with nvm
		Getting ready
		How to do it…
		How it works…
		There’s more…
	Accessing the Node.js API documentation
		Getting ready
		How to do it…
		How it works…
		There’s more…
	Adopting new JavaScript syntax in Node.js 22
		Getting ready
		How to do it…
		How it works…
	Introducing the Node.js event loop
		Getting ready
		How to do it…
		How it works…
		There’s more
Chapter 2: Interacting with the File System
	Technical requirements
	Interacting with the file system
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Working with files
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Fetching metadata
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Watching files
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
Chapter 3: Working with Streams
	Technical requirements
	Creating readable and writable streams
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Interacting with paused streams
		Getting ready
		How to do it…
		How it works…
		See also
	Piping streams
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Creating transform streams
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Building stream pipelines
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
Chapter 4: Using Web Protocols
	Technical requirements
	Making HTTP requests
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Creating an HTTP server
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Receiving HTTP POST requests
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Handling file uploads
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Creating a WebSocket server
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Creating an SMTP server
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
Chapter 5: Developing Node.js Modules
	Technical requirements
	Consuming Node.js modules
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Scaffolding a module
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Writing module code
		Getting ready
		How to do it…
		How it works…
		See also
	Publishing a module
		Getting ready
		How to do it…
		How it works…
		There’s more…
	Using ECMAScript modules
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
Chapter 6: Working with Fastify – The Web Framework
	Technical requirements
	Creating an API starter using Fastify
		Getting ready
		How to do it…
	Splitting the code into small plugins
		How to do it…
		How it works…
	Adding routes
		How to do it…
		How it works…
		There’s more...
	Implementing authentication with hooks
		Getting ready
		How to do it…
		How it works…
		There’s more...
	Breaking the encapsulation
		Getting ready
		How to do it…
		There’s more...
	Implementing business logic using hooks
		Getting ready
		How to do it…
	Validating the input data
		How to do it…
	Enhancing application performance with serialization
		How to do it…
	Configuring and testing a Fastify application
		Getting ready
		How to do it…
		How it works…
		There’s more...
Chapter 7: Persisting to Databases
	Technical requirements
	Connecting and persisting to a MySQL database
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Connecting and persisting to a PostgreSQL database
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Connecting and persisting to MongoDB
		Getting ready
		How to do it…
		How it works…
		See also
	Persisting data with Redis
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Exploring GraphQL
		Getting ready
		How to do it…
		How it works…
		See also
Chapter 8: Testing with Node.js
	Technical requirements
	Testing with node:test
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Testing with Jest
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Stubbing HTTP requests
		Getting ready
		How to do it…
		How it works…
		See also
	Using Puppeteer
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Configuring Continuous Integration tests
		Getting ready
		How to do it…
		How it works…
		See also
Chapter 9: Dealing with Security
	Technical requirements
	Detecting dependency vulnerabilities
		Getting ready
		How to do it…
		How it works…
		There’s more...
		See also
	Authentication with Fastify
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Hardening headers with Helmet
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Anticipating malicious input
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Preventing JSON pollution
		Getting ready
		How to do it…
		How it works…
		See also
	Guarding against cross-site scripting
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Preventing cross-site request forgery
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
Chapter 10: Optimizing Performance
	Technical requirements
	Benchmarking HTTP requests
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Interpreting flame graphs
		Getting ready
		How to do it…
		How it works…
		See also
	Detecting memory leaks
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Optimizing synchronous functions
		Getting ready
		How to do it…
		How it works…
		See also
	Optimizing asynchronous functions
		Getting ready
		How to do it…
		How it works…
		See also
	Working with worker threads
		Getting ready
		How to do it…
		How it works…
Chapter 11: Deploying Node.js Microservices
	Technical requirements
	Generating a microservice with LoopBack
		Getting ready
		How to do it…
		How it works…
		See also
	Consuming a microservice
		Getting ready
		How to do it…
		How it works…
		See also
	Building a Docker container
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Publishing a Docker image
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Deploying to Kubernetes
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
Chapter 12: Debugging Node.js
	Technical requirements
	Diagnosing issues with Chrome DevTools
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Logging with Node.js
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Enabling debug logs
		Getting ready
		How to do it…
		How it works…
		See also
	Enabling Node.js core debug logs
		Getting ready
		How to do it…
		How it works…
		See also
	Increasing stack trace size
		Getting ready
		How to do it…
		How it works…
		There’s more…
		See also
	Creating diagnostic reports
		Getting ready
		How to do it…
		How it works…
		See also
Index
About Packt
Other Books You May Enjoy




نظرات کاربران