Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
The Node Craftsman Book

You're reading from   The Node Craftsman Book An Advanced Node.js Tutorial

Arrow left icon
Product type Paperback
Published in Apr 2017
Publisher Packt
ISBN-13 9781787128149
Length 186 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Manuel Kiessling Manuel Kiessling
Author Profile Icon Manuel Kiessling
Manuel Kiessling
Arrow right icon
View More author details
Toc

Table of Contents (17) Chapters Close

Preface 1. Part 1: Node.js Basics in Detail 2. Working with NPM and Packages FREE CHAPTER
3. Test-driven Node.js Development
4. Object-oriented JavaScript 5. Synchronous and Asynchronous Operations Explained 6. Using and Creating Event Emitters 7. Optimizing Code Performance and Control Flow Management Using the Async Library 8. Node.js and MySQL 9. Node.js and MongoDB 10. Part 2: Building a Complete Web Application with Node.js and Angular 11. Milestone 1 – A First Passing Test Against the Server
12. Milestone 2 – The API Responds with Actual Database Content 13. Milestone 3 – Setting the Stage for a Continuous Delivery Workflow 14. Milestone 4 – Giving Users a Frontend 15. Milestone 5 – More Work on the Backend 16. Milestone 6 – Completing the Backend and Finalizing the Application

Using the mysql library

Node.js is able to connect to MySQL database servers, but support for this is not built in. We need to make use of a Node.js package that handles the low level details of establishing a connection and talking to the database. Additionally, such a package should enable us to issue statements to the database written in SQL.

The most widely accepted NPM package for this is simply named mysql.

In order to use it, let's start by declaring mysql as a dependency for our project in our package.json file:

{ 
   "dependencies": { 
     "mysql": "^2.12.0" 
   } 
 }

As always, npm install pulls in everything we need to start working with a MySQL database.

For what follows, I assume that you have a working MySQL database up and running on your local machine. You should be able to connect to it locally. You can verify that this is the case by running mysql -h127.0.0...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at AU $24.99/month. Cancel anytime