دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
دسته بندی: برنامه نويسي ویرایش: نویسندگان: Manuel Kiessling سری: The node craftsman book ناشر: سال نشر: 0 تعداد صفحات: 170 زبان: English فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) حجم فایل: 623 کیلوبایت
در صورت تبدیل فایل کتاب The node craftsman book : An advanced nodejs tutorial به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب کتاب صنعتگر گره: یک آموزش پیشرفته nodejs نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
آموزش پیشرفته Node.js
An advanced Node.js tutorial
Preface
About
Status
Notes on code formatting
Intended audience
Part 1: Node.js basics in detail
Introduction to Part 1
Working with NPM and Packages
Test-Driven Node.js Development
Object-oriented JavaScript
Blueprints versus finger-pointing
A classless society
Creating objects
Object-orientation, prototyping, and inheritance
A classless society, revisited
Summary
Synchronous and Asynchronous operations explained
Visualizing the Node.js execution model
Blocking and non-blocking operations
Using and creating Event Emitters
Introduction
Creating your own Event Emitter object
Summary
Optimizing code performance and control flow management using the async library
Executing expensive asynchronous background tasks in parallel
Optimizing code structure with async
Node.js and MySQL
Using the node-mysql library
A first database application
Using node-mysql’s Streaming API
Making SQL queries secure against attacks
Summary
Node.js and MongoDB
Some MongoDB basics
Applying CRUD operations with the low-level mongodb driver
Retrieving specific documents using filters
More complex update operations
Working with indexes
Querying collections efficiently
Summary
Part 2: Building a complete web application with Node.js and AngularJS
Introduction
The requirements from a user’s perspective
High level architecture overview
Setting up the development environment
Milestone 1: A first passing test against the server
Milestone 2: The API responds with actual database content
Abstracting database access
Ensuring a clean slate for test runs
Completing the first spec
Milestone 3: Setting the stage for a continuous delivery workflow
Introducing automatic database migrations
Milestone 4: Giving users a frontend
Setting up frontend dependencies through bower
Serving the frontend through the backend server
Adding the frontend code
Adding AngularJS view templates
Milestone 5: More work on the backend
Adding a route for retrieving categories
Making the backend recognize different environments
Milestone 6: Completing the backend and finalizing the application
Creating the route for adding new keywords
Creating the route for updating keywords
Creating the route for deleting keywords
Summary
Epilogue