This article will help you to install an Apache web server with PHP and MySQL support on your Amazon Linux instance (sometimes called a LAMP web server or LAMP stack). You can use this server to host a static website or deploy a dynamic PHP application that reads and writes information to a database.
Author: Sivasankar

Firebase Dynamic Links With REST APIs On Node.js
Firebase Dynamic Links are links that work the way you want on multiple platforms. With Dynamic Links, your users get the best available experience for the platform they open your link on. If a user opens a Dynamic Link on iOS or Android, they can be taken directly to the linked content in your native app. If a user opens the same Dynamic Link in a desktop browser, they can be taken to the equivalent content on your website.

Testing Hapi.js With Jest
Jest is a testing framework developed by Facebook, and its often used to test React applications. However, it isn’t limited to just React it also support testing many web frameworks. In this article we will see how to test Hapi.js with Jest. Hapi.js rich framework for building applications and services hapi enables developers to focus on writing reusable application logic instead of spending time building infrastructure.
(more…)
Building REST APIs with Swagger On Node.js
Nowadays REST APIs plays important role in every applications, Where it has been used to connect with other applications and to share data with that applications. REST APIs without a good documentation on how to use it, is useless. Because of that, developers have worked hard to create a standard way of describing APIs and documentation. Swagger On Node.js providing a reliable solution for design, development, testing and documentation of REST APIs.

Best Practice of Connecting MongoDB Using Mongoose ODM
Mongoose ODM provides a straight-forward, schema-based solution to model your application data. It includes built-in type casting, validation, query building, business logic hooks and more, out of the box. Mongoose is the Object Document Mapper (ODM) for Node.js and it is written on the top of the Node.js and native MongoDB driver. Mongoose ODM gives the ability to define a schema for their documents which can then be used to map documents to objects in their programming language. It makes you to type-caste & validate your object before saving your document to MongoDB
(more…)

Node.js Cluster With Express.js
Node.js is a JavaScript runtime built on Chrome’s V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js package ecosystem is the largest ecosystem of open source libraries in the world, Which makes the possibility for rapid prototyping environment. A single instance of Node.js runs in a single thread. To take advantage of multi-core systems, the user will sometimes want to launch a Node.js Cluster processes to handle the load.

Building an Alexa Skills as a Web Service With Express, Node.js & MongoDB
On last article we have seen, How to build an Amazon Alexa Skill with AWS Lambda Function (Blueprints). In this article we are going to build an Amazon Alexa Skills Application with Node.js, MongoDB and Express framework. Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications.

Build an Amazon Alexa Skill with AWS Lambda Function (Blueprints)
Back again with a new post to build Amazon Alexa Skill with AWS Lambda Function using preconfigured template (Blueprints). We are going to use preconfigured template created with Node.js in this tutorial. As this is first post with Alexa, So we can go with the overview of Amazon Alexa Skill and AWS Lambda.

List Posts From WordPress Using REST API With cURL In PHP
WordPress REST API provides API endpoints for WordPress data types that allow developers to interact with sites remotely by sending and receiving JSON (JavaScript Object Notation) objects. This enables developers to create, read and update WordPress content from client-side JavaScript or from external applications. Nowadays every application provides the API to interact with their application remotely or to share their data in another platform. Here, This article will shows a how to list posts from WordPress using REST API with cURL in PHP
(more…)

Google URL Shortener API Integration With Node.js
Google URL Shortener at goo.gl is a service that takes long URLs and squeezes them into fewer characters to make a link that is easier to share, tweet, or email to friends. Users can create these short links through the web interface at goo.gl, or they can programatically create them through the Google URL Shortener API. With the URL Shortener API you can write applications that use simple HTTP methods to create, inspect, and manage goo.gl short links from desktop, mobile, or web.