Create Fake JSON API For Rapid Development Using JSON Server
Node Package Manager(NPM) provides a module name JSON-SERVER for creating Fake JSON API for rapid application development. In this demo, “We will learn to create a fake JSON API using JSON-SERVER module”. To install JSON-SERVER use npm install json-server -g command in a terminal.The following screenshot shows the terminal with json-server installation in progress. After […]
Getting Started Isomorphic React JS With Express And EJS
In my previous post we have learn to use Isomorphic React JS with Express server. In this Demo, “We will learn to EJS template in Node Express Server and Isomorphic React JS”. We need to install express,react and ejs node modules to for this demo.In previous post we have already installed express and react.We need […]
Getting Started With Isomorphic React JS With Express
Isomorphic JavaScript are the code which can be run in both server and client side. To achieve a shared JavaScript code between server and client we need to use NodeJS for writing server side code and then we can use Browserify like tool to create a version of code that can be used in client/browser […]
Getting Started With Browserify Part4
In my previous post we have learn about watchify tool to automate Browserify process. There are many other useful tools to automate Browserify process like Beefy. In this demo,”We will learn about Beefy tool for automate Browserify process”. To demonstrate Beefy tool we have created the following structure. Beefy tool can be installed using command […]