Skip to content
  • Obidos Technologies (P) Ltd
Obidos Technologies (P) Ltd

ObidosTech Knowledge Base

Help snippets on NodeJs, React, ColdFusion, PHP, Android, iOS and tech news

About Obidos Technologies (P) Ltd

Profile
ObidosTech

Obidos Technologies (P) Ltd is an off-shore development and maintenance center for ColdFusion applications, PHP application along with ReactJS, NodeJS

Menu
  • Obidos Technologies (P) Ltd
  • Prasanth Kumar.S

Category: JavaScript

5 Articles
Categories
Integration JavaScript JSON Lucee Node.JS Oracle PHP Server Technology Windows

Using Server Sent Events (SSE) with Session

March 13, 2020March 13, 2020
2 mins read
SSE or server sent events are a great choice for pushing data from server to the clients. The benefit of SSE over web-sockets is that unlike web-sockets SSE is a…
Read more
Categories
Apache Internet JavaScript JSON Node.JS Server Technology Windows

Create HTTPS server with Node.js

October 23, 2019October 23, 2019
1 min read
To start an HTTPS server, you need to have the private key.pem and also the certificate.pem of the SSL certificate. Then using the crypto and fs libraries, you can get…
Read more
Categories
Android App JavaScript Node.JS Server Windows

Node / React cheat sheet

July 8, 2019August 13, 2019
1 min read
Create a react application c:\ npx create-react-app my-app If the creation of react app is generating error like 'Unexpected end of JSON input while parsing near ...' c:\ npm cache…
Read more
Categories
Android App Internet JavaScript JSON Node.JS Server Technology

Initial references for creating a NodeJS and React application

July 6, 2019July 6, 2019
2 mins read
Below are few code snippets and links that are helpful when you start developing a NodeJS application. Ref: https://gist.github.com/gaearon/683e676101005de0add59e8bb345340c If you haven’t worked with JavaScript in the last few years,…
Read more
Categories
ColdFusion Internet JavaScript JSON Node.JS PHP Technology

Accurate way to round decimals in JavaScript

February 27, 2017February 27, 2017
1 min read
The rounding problem can be avoided by using numbers represented in exponential notation: Number(Math.round(1.005+'e2')+'e-2'); // 1.01 Source: http://www.jacklmoore.com/notes/rounding-in-javascript/
Read more