Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Node.js for Beginners
  • Table Of Contents Toc
  • Feedback & Rating feedback
Node.js for Beginners

Node.js for Beginners

By : Ulises Gascón
4.8 (5)
close
close
Node.js for Beginners

Node.js for Beginners

4.8 (5)
By: Ulises Gascón

Overview of this book

Node.js revolutionizes server-side JavaScript development and empowers developers to build efficient, scalable, and versatile applications across a range of use cases. This book is written by a Node.js core collaborator and releaser and is the only book for beginners on Node.js. It takes you on a progressive learning path that will give you the skills needed to leverage Node.js. You’ll learn Node.js fundamentals and refresh your knowledge of JavaScript before transitioning to the development of modern web applications using Node.js, Express.js, and MongoDB. You’ll get hands-on with complex topics such as asynchronous programming, npm libraries, event-driven patterns for HTTP servers, RESTful API, and JSON Web Tokens. The final chapters will walk you through the deployment process, offering insights into various strategies, including bare metal setups, virtual machines, and containerization with Docker. You’ll also be guided through the use of Process Manager 2 (PM2) for efficient process management. By the end of this Node.js book, you'll have the skills to craft, test, and deploy Node.js web applications confidently and use this powerful stack in your day-to-day projects.
Table of Contents (25 chapters)
close
close
Lock Free Chapter
1
Part 1: Node.js Overview and JavaScript Language
6
Part 2: Node.js Ecosystem and Architecture
11
Part 3: Web Application Fundamentals
14
Part 4: Building Solid Web Applications with Node.js
20
Part 5: Mastering Node.js Deployment and Portability

Using strings in JavaScript

Strings are primitive values. They are a sequence of characters. There are three ways to create strings in JavaScript: using single quotes, ', double quotes, ", or backticks, `.

console.log('Hello World');
console.log("Hello World");
console.log(`Hello World`);

Strings are immutable, which means that once they are created, they cannot be modified, but you can overwrite the variables or references depending on the data structure. So, all the methods that you use to modify a string will return a new string (or array):

Template strings allow you to use placeholders, ${}, to insert variables or expressions inside a string. There is also added support for multiple lines:

const name = "John";
console.log(`Hello ${name}!`) //Hello John!

Important methods

There are many ways to perform operations with strings, but in this section, we will see only the most important methods that you will use in your day-to...

Visually different images
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Node.js for Beginners
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist download Download options font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon