ورود به حساب

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

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

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

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

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

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


09117307688
09117179751

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

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

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

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

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

پشتیبانی

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

دانلود کتاب Professional node.js: building JavaScript-based scalable software

دانلود کتاب Node.js حرفه ای: ساخت نرم افزار مقیاس پذیر مبتنی بر جاوا اسکریپت

Professional node.js: building JavaScript-based scalable software

مشخصات کتاب

Professional node.js: building JavaScript-based scalable software

ویرایش:  
نویسندگان:   
سری:  
ISBN (شابک) : 9781118185469, 9781118265185 
ناشر: John Wiley & Sons, Inc 
سال نشر: 2013 
تعداد صفحات: 412 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 12 مگابایت 

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



کلمات کلیدی مربوط به کتاب Node.js حرفه ای: ساخت نرم افزار مقیاس پذیر مبتنی بر جاوا اسکریپت: جاوا اسکریپت (زبان برنامه کامپیوتری)، کتاب های الکترونیکی، Node.js



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

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


در صورت تبدیل فایل کتاب Professional node.js: building JavaScript-based scalable software به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب Node.js حرفه ای: ساخت نرم افزار مقیاس پذیر مبتنی بر جاوا اسکریپت نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی در مورد کتاب Node.js حرفه ای: ساخت نرم افزار مقیاس پذیر مبتنی بر جاوا اسکریپت

آموزش ساخت نرم افزار سریع و مقیاس پذیر در جاوا اسکریپت با Node.js Node.js یک فریمورک جدید قدرتمند و محبوب برای نوشتن برنامه های شبکه مقیاس پذیر با استفاده از جاوا اسکریپت است. این کتاب بی معنی با مروری بر Node.js شروع می شود و سپس به سرعت به کد، مفاهیم اصلی و API ها می پردازد. پوشش عمیق موارد ضروری برای پوشش اشکال زدایی، تست واحد و کنترل جریان را کاهش می دهد تا بتوانید فوراً ساخت و آزمایش ماژول های خود را شروع کنید. مفاهیم اصلی برنامه نویسی گره و ناهمزمان را پوشش می دهد به اصول اولیه می پردازد: ماژول ها، بافرها، رویدادها و تایمرهاExpl .


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

Learn to build fast and scalable software in JavaScript with Node.js Node.js is a powerful and popular new framework for writing scalable network programs using JavaScript. This no nonsense book begins with an overview of Node.js and then quickly dives into the code, core concepts, and APIs. In-depth coverage pares down the essentials to cover debugging, unit testing, and flow control so that you can start building and testing your own modules right away.Covers node and asynchronous programming main conceptsAddresses the basics: modules, buffers, events, and timersExpl.



فهرست مطالب

Machine generated contents note: pt. I INTRODUCTION AND SETUP --
ch. 1 Installing Node --
Installing Node on Windows --
Installing on Mac OS X --
Installing Node Using the Source Code --
Choosing the Node Version --
Downloading the Node Source Code --
Building Node --
Installing Node --
Running Node --
Setting Up and Using Node Package Manager --
Using NPM to Install, Update, and Uninstall Packages --
Summary --
ch. 2 Introducing Node --
Introducing the Event-Driven Programming Style --
How Node and JavaScript Make Writing Asynchronous Applications Easier --
What Are Closures? --
How Closures Help When Programming Asynchronously --
Summary --
pt. II NODE CORE API BASICS --
ch. 3 Loading Modules --
Understanding How Node Loads Modules --
Exporting a Module --
Loading a Module --
Summary --
ch. 4 Using Buffers to Manipulate, Encode, and Decode Binary Data --
Creating a Buffer --
Getting and Setting Bytes in a Buffer --
Slicing a Buffer --
Copying a Buffer --
Decoding a Buffer --
Summary --
ch. 5 Using the Event Emitter Pattern to Simplify Event Binding --
Understanding the Standard Callback Pattern --
Understanding the Event Emitter Pattern --
Understanding Event Types --
Using the Event Emitter API --
Binding Callbacks Using .addListener() or .on() --
Binding Multiple Event Listeners --
Removing an Event Listener from an Event Emitter Using .removeListener() --
Getting a Callback Executed at Most Once Using .once() --
Removing All Event Listeners from an Event Emitter Using .removeAllListeners() --
Creating an Event Emitter --
Inheriting from Node Event Emitter --
Emitting Events --
Summary --
ch. 6 Scheduling the Execution of Functions Using Timers --
Using setTimeout to Defer the Execution of a Function --
Using clearTimeout to Cancel the Execution of a Function --
Scheduling and Canceling the Repetitive Execution of a Function --
Using process.nextTick to Defer the Execution of a Function Until the Next Event Loop Iteration --
Blocking the Event Loop --
Escaping the Event Loop --
Using setTimeout Instead of setInterval to Force Serialization --
Summary --
pt. III FILES, PROCESSES, STREAMS, AND NETWORKING --
ch. 7 Querying, Reading from, and Writing to Files --
Manipulating File Paths --
Normalizing Paths --
Joining Paths --
Resolving Paths --
Finding the Relative Path Between Two Absolute Paths --
Extracting Components of a Path --
Determining the Existence of a Path --
Introducing the fs Module --
Querying File Statistics --
Opening a File --
Reading from a File --
Writing to a File --
Closing a File --
Summary --
ch. 8 Creating and Controlling External Processes --
Executing External Commands --
Spawning Child Processes --
Creating the Child Process --
Listening for Data from the Child Process --
Sending Data to the Child Process --
Receiving Notification When the Child Process Exits --
Signaling and Killing Processes --
Summary --
ch. 9 Reading and Writing Streams of Data --
Using a Readable Stream --
Waiting for Data --
Pausing and Resuming a Stream --
Knowing When the Stream Ends --
Using Writable Streams --
Writing Data into a Stream --
Waiting for a Stream to Drain --
Considering Some Stream Examples --
Creating File-System Streams --
Understanding Networking Streams --
Avoiding the Slow Client Problem and Saving Your Server --
Understanding the Slow Client Problem --
Avoiding the Slow Client Problem --
Using stream.pipe() to Prevent the Slow Client Problem and Assembling Readable and Writable Streams Using pipe() --
Summary --
ch. 10 Building TCP Servers --
Creating a TCP Server --
Using the Socket Object --
Understanding Idle Sockets --
Setting Up Keep-Alive --
Using Delay or No Delay --
Listening for Client Connections --
Closing the Server --
Handling Errors --
Building a Simple TCP Chat Server --
Accepting Connections --
Reading Data from a Connection --
Collecting All the Clients --
Broadcasting Data --
Removing Closed Connections --
Using Your TCP Chat Server --
Summary --
ch. 11 Building HTTP Servers --
Understanding the http.ServerRequest Object --
Understanding the http.ServerResponse Object --
Writing a Header --
Changing or Setting a Header --
Removing a Header --
Writing a Piece of the Response Body --
Streaming HTTP Chunked Responses --
Piping a File --
Piping the Output of Another Process --
Shutting Down the Server --
Example 1 Building a Server that Serves Static Files --
Example 2 Making Use of HTTP Chunked Responses and Timers --
Summary --
ch. 12 Building a TCP Client --
Connecting to a Server --
Sending and Receiving Data --
Ending the Connection --
Handling Errors --
Building an Example Command-Line TCP Client --
Connecting to the Server --
Sending the Command Line to the Server --
Printing Server Messages --
Reconnecting if the Connection Dies --
Closing the Connection --
Putting the Client Together --
Summary --
ch. 13 Making HTTP Requests --
Making GET Requests --
Using Other HTTP Verbs --
Inspecting the Response Object --
Obtaining the Response Body --
Streaming the Response Body --
Pooling Sockets Using http.Agent --
Using a Third-Party Request Module to Simplify HTTP Requests --
Installing and Using Request --
Creating a Testing Server --
Following Redirects --
Setting Some Request Options --
Encoding the Request Body --
Streaming --
Using a Cookie Jar --
Summary --
ch. 14 Using Datagrams (UDP) --
Understanding UDP --
Understanding the Uses of UDP --
Building a Datagram Server --
Listening for Messages --
Testing the Server --
Inspecting Additional Message Information --
Creating a Simple Datagram Echo Server --
Waiting for Messages --
Sending Messages Back to Senders --
Putting the Echo Server Together --
Building a Datagram Client --
Creating the Client --
Sending Messages --
Closing the Socket --
Creating a Simple Datagram Command-Line Client --
Reading from the Command Line --
Sending Data to the Server --
Receiving Data from the Server --
Putting the Command-Line UDP Client Together --
Understanding and Using Datagram Multicast --
Receiving Multicast Messages --
Sending Multicast Messages --
Understanding Maximum Datagram Size --
Summary --
ch. 15 Securing Your TCP Server with TLS/SSL --
Understanding Private and Public Keys --
Generating a Private Key --
Generating a Public Key --
Building a TLS Server --
Initializing the Server --
Listening for Connections --
Reading Data from the Client --
Sending Data to the Client --
Ending the Connection --
Building a TLS Client --
Initializing the Client --
Connecting to the Server --
Verifying the Server Certificate --
Sending Data to the Server --
Reading Data from the Server --
Ending the Connection --
Building Some Examples --
Creating a TLS Chat Server --
Creating a TLS Command-Line Chat Client --
Verifying the Client Certificate --
Summary --
ch. 16 Securing Your HTTP Server with HTTPS --
Building a Secure HTTP Server --
Setting Up the Server Options --
Listening for Connections --
Validating the HTTPS Client Certificate --
Creating an HTTPS Client --
Initializing the Client --
Making the Request --
Validating the HTTPS Server Certificate --
Summary --
pt. IV BUILDING AND DEBUGGING MODULES AND APPLICATIONS --
ch. 17 Testing Modules and Applications --
Using a Test Runner --
Writing Tests --
Running Tests --
Using an Assertion Testing Module --
Using the assert Module --
Using the Built-in Assertion Functions in Node-Tap --
Testing Your Asynchronous Module --
Summary --
ch. 18 Debugging Modules and Applications --
Using console.log --
Using Node\'s Built-in Debugger --
Using Node Inspector --
Summary --
ch. 19 Controlling the Callback Flow --
Understanding the Boomerang Effect --
Avoiding the Boomerang Effect by Declaring Functions --
Using the async Flow Control Library --
Executing in Series --
Executing in Parallel --
Cascading --
Queuing --
Iterating --
Mapping --
Reducing --
Filtering --
Detecting --
Summary --
pt. V BUILDING WEB APPLICATIONS --
ch. 20 Building and Using HTTP Middleware --
Understanding the Connect HTTP Middleware Framework --
Building Your Own HTTP Middleware --
Creating Asynchronous Middleware --
Registering Callbacks Inside Middleware --
Handling Errors Inside Middleware --
Using the HTTP Middleware Bundled in Connect --
Logging Requests --
Handling Errors --
Serving Static Files --
Parsing the Query String --
Parsing the Request Body --
Parsing Cookies --
Using a Session --
Other Available Middleware --
Summary --
ch. 21 Making a Web Application Using Express.js --
Initializing Your Express.js Application --
Setting Up Middleware in Your Application --
Routing Requests --
Handling Routes --
Using Sessions --
Using Route Middleware --
Summary --
ch. 22 Making Universal Real-Time Web Applications Using Socket.Io --
Understanding How WebSockets Work --
Using Socket.IO to Build WebSocket Applications --
Installing and Running Socket.IO on the Server --
Building a Real-Time Web Chat with Socket.IO --
Extending the Chat Application --
Detecting Disconnections --
Separating Users Into Rooms --
Using Namespaces --
Distributing the Server-Side Application Using Redis --
Summary --
pt. VI CONNECTING TO DATABASES --
ch. 23 Connecting to MYSQL Using Node-MYSQL --
Using a Library to Connect to and Communicate with a MySQL Database --
Adding Data to the Database with Security Concerns in Mind --
Reading Data Efficiently --
Summary --
ch. 24 Connecting to Couchdb Using Nano Note continued: Installing Nano --
Connecting and Creating a Database --
Storing Documents --
Creating and Using CouchDB Views --
Attaching Files to a CouchDB Document --
Summary --
ch. 25 Connecting to Mongodb Using Mongoose --
Installing Mongoose --
Understanding How Mongoose Uses Models to Encapsulate Database Access --
Connecting to MongoDB --
Defining a Schema --
Defining a Model --
Using Validators --
Using Modifiers --
Using Getters --
Using Virtual Attributes --
Using Default Values --
Defining Indexes --
Referencing Other Documents Using DB Refs --
Defining Instance Methods --
Defining Static Methods --
Summary.




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