Gabkings / Web-Development-with-MongoDB-and-Node-Third-Edition

Web Development with MongoDB and Node Third Edition, published by Packt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Web Development with MongoDB and Node - Third Edition

This is the code repository for Web Development with MongoDB and Node - Third Edition, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

This book will help you to get these two technologies working together to build web applications quickly and easily, with effortless deployment to the cloud. You will also learn about angular 4, which consumes pure JSON APOIs from a hapi server.

The book begins by setting up your development environment, running you through the steps necessary to get the main application server up-and-running. Then you will see how to use Node.js to connect to a MongoDB database and perform data manipulations.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

Chapter number 1, 2, 3, 10, 12 contains code but that is not executable. So code files are not present.

The code will look like the following:

var http = require('http');
http.createServer(function(req, res) {
    res.writeHead(200, { 'Content-Type': 'text/plain' });
    res.end('Hello World\n');
}).listen(8080, 'localhost');
console.log('Server running at http://localhost:8080'); 

A basic understanding of JavaScript and HTML is the only requirement for this book. However, the design of book also helps the beginner with basic programming knowledge as well as cross platform developer to learn JavaScript and its frameworks.

Related Products

About

Web Development with MongoDB and Node Third Edition, published by Packt

License:MIT License


Languages

Language:JavaScript 70.7%Language:HTML 29.3%