logon

Android App-BMI Calculator

January 16, 2019 admin 8

BMI Calculator Body mass index is a measure of body fat and is commonly used within the health industry to determine whether your weight is healthy.  BMI applies to both adult men and women and is the calculation of body weight in relation to height. Download via Google Play

1 ZQ0QUExBFtsPfzvxdlIc2g

Node.js MySQL

December 29, 2018 admin 3

Node.js can be used in database applications. One of the most popular databases is MySQL. Install MySQL Driver Using npm C:UserspcDesktopnodeJsTest>npm install mysql [{“id”:1,”name”:”Dr.Chandana”},{“id”:2,”name”:”Dr.Cooray”},{“id”:3,”name”:”Prof. Cooray”},{“id”:4,”name”:”Dr.Kumari”}]

articleocw 57e91c596bba5

Node.js Send an Email

December 29, 2018 admin 4

The Nodemailer Module The Nodemailer module makes it easy to send emails from your computer. The Nodemailer module can be  installed using npm command see example. C:UserspcDesktopnodeJsTest>npm install nodemailer var nodemailer = require(‘nodemailer’); Send an Email Now you are ready to send emails from your server. Use the username and password […]

images

Node.js Modules

December 29, 2018 admin 1

What is a Module in Node.js? A set of functions that you want to include in your application. Built-in Modules Node.js has a set of built-in modules that you can use without any further installation. Examples: assert Provides a set of assertion tests buffer To handle binary data child_process To […]