Page 2 of 5

Introduction to Node.js

Introduction to Node.js  Published On October 19, 2015 The popularity of JavaScript have skyrocketed in recent years and inevitably the Node.js and its ecosystem have played an important role. In last few years JavaScript has shown its strengths and have proved… Continue Reading →

TinyMCE Angular Integration in Angular > 2

Installing the TinyMCE Angular integration using NPM To install the tinymce-angular package and save it to your package.json. This package is for Angular 5+. For Angular 4, use @tinymce/tinymce-angular-legacy Using the TinyMCE Angular integration Import the EditorModule from the npm package using: import { EditorModule }… Continue Reading →

Covid-19 Tracker Custom API

Real time covid-19 tracker api using node js & express js. below plugin are used to implement API: CORS used for allow Access-Control-Allow-Origin for that need to use middleware : app.use(cors()). csv-parser can convert CSV into JSON at at rate of… Continue Reading →

Callback Concept in Node JS

What is callback? callback is function which run one function after another. Node is single-threaded and asynchronous, the community devised the callback functions, which would fire (or run) after the first function (to which the callbacks were assigned) run is… Continue Reading →

json web token in node js

Nodejs authentication using JWT a.k.a JSON web token is very useful when you are developing cross-device authentication mechanism. Here is how token based authentication works: User logins to the system and upon successful authentication, the user are assigned a token… Continue Reading →

Multi-tenancy

Multi-tenancy is an architecture in which a single instance of a software application serves multiple customers. Each customer is called a tenant. Tenants may be given the ability to customize some parts of the application, such as the color of… Continue Reading →

how to setup nginx in windows for node or angular

First setup nginx in windows: Download nginx from nginx website .  then go to your download folder unzip nginx  folder and place at c drive. follow below instructions : go to nginx folder open command prompt type in command prompt … Continue Reading →

How to enable HTTPS in Node js REST API

For HTTPS Enable we need to install https from npm package : use the following command [  npm i htps –save  ] For Free SSL Certificate need to create selfsigned.key and selfsigned.crt files. Go to Create a Self-Signed SSL Certificate   var fs =… Continue Reading →

Basic Interview Question For Node JS

What Is Node.js? Node.js is a powerful framework developed on Chrome’s V8 JavaScript engine that compiles the JavaScript directly into the native machine code. It is a lightweight framework used for creating server-side web applications and extends JavaScript API to offer usual… Continue Reading →

Mail API with Node.js, Express

Creating the Application: 1. Fire up your terminal and create a new folder for the application. mkdir node-api 2. Initialize the application with a package.json file Go to the root folder of your application and type npm init to initialize your app… Continue Reading →

Create Restful CRUD API with Node.js, Express and MongoDB

Creating the Application: 1. Fire up your terminal and create a new folder for the application. mkdir node-api 2. Initialize the application with a package.json file Go to the root folder of your application and type npm init to initialize your app… Continue Reading →

Difference Between AngularJS, Angular 2, Angular 4

Angular is considered one of the best open-source JavaScript frameworks. Google’s Angular team released Angular 2 as a complete makeover of its original Angular 1 framework. For those of you who are still learning Angular frameworks, this blog will offer… Continue Reading →

« Older posts Newer posts »

© 2024 TapanAcharjee

Up ↑