In case of operations for big data regarding fetching numerous records, operations taking a bit time (e.g. > 3-5 minutes) or uploading a blob on azure local storage even if we using async operations node.js in this situations can close or reject current request due to exceed default timeout of request. In this situation we […]
Read More[Solved] Massive data & Node.js – increasing timeout for request of REST API functions
The mobile application for phones and other devices with IOS and android systems made with the use of the Quasar Framework is ready and works sensational. “Pilgrim Songbook and Wanderer’s Songbook” – has been deployed to the App Store (https://itunes.apple.com/pl/app/śpiewnik-pielgrzyma-wędrowca/id1364666898?l=pl&mt=8) and Google Play (https://play.google.com/store/apps/details?id=com.maxprog.songbooks) . Mobile Application Songbooks has been created for one of the […]
Read MoreQuasar Framework & Mobile Application Songbooks for one of the biggest Protestant Church
To deploy and debug mobile application on physical device (IOS) e.g. iPhone, You should at the begining install ios-deploy module, by executing command. Very Important!!! Don’t use sudo in below command!!! npm install -g ios-deploy Next step, it is running our mobile application on physical device. It is possible by command with option –device, that means that we’ll work on […]
Read MoreQuasar Framework – How deploy and debug mobile application on physical device (IOS) e.g. iPhone
At the last time I’ve found perfect function which will help to remove all HTML tags, scripts, css, styles from html string and convert it to a plain text. using System.Text.RegularExpressions; private string GetPlainTextFromHtml(string htmlString) { string htmlTagPattern = “<.*?>”; var regexCss = new Regex(“(\\<script(.+?)\\)|(\\<style(.+?)\\)”, RegexOptions.Singleline | RegexOptions.IgnoreCase); htmlString = regexCss.Replace(htmlString, string.Empty); htmlString = Regex.Replace(htmlString, […]
Read MoreSolved: C# How Get Plain Text from HTML String
How split single text with delimiter or multiline from column/cell into multiple rows? In case of massive data, the performance is very important and has high priority, so we focus on solution which we can use in production environment. The solution bases on created function on MS SQL server, presented below on attached screen: CREATE FUNCTION […]
Read MoreSOLVED: Massive Data – How split single text with delimiter or multiline from column/cell into multiple rows
If You have problem with install sharp module for node.js on windows, and as result You’ve got message error like “..The tools version “2.0” is unrecognized. Available tools versions are “4.0”..” or similar: then to solve this problem, before installing sharp, You need to install python and windows build tools to run node-gyp using presented following solution. The […]
Read MoreSOLVED: Problem with install sharp module for node.js on windows – The tools version “2.0” is unrecognized. Available tools versions are “4.0”
I analyze the success of Big Brands and their solutions based on node.js. The most interesting is question asked in case each of them: which kind of framework of node.js is used in their solutions? The amazing article attached below presents real story of Dow Jones and their solution rest on his own framework called as Tesla.js (source: teslajs.com GitHub: https://github.com/teslajs) […]
Read MoreNode.js – Dow Jones & Tesla.js – amazing article about story of success
Cross-site request forgery, also known as one-click attack or session riding and abbreviated as CSRF (sometimes pronounced sea-surf) or XSRF, is a type of malicious exploit of a website where unauthorized commands are transmitted from a user that the website trusts. Unlike cross-site scripting (XSS), which exploits the trust a user has for a […]
Read MoreNode.js – Protection against Cross-site request forgery (CSRF, XSRF)
PayPal reported 100% increase in productivity compared to the previous Java stack after switching to Node.js. PayPal created has own framework for Node.js named as Kracken (http://krakenjs.com/) One of LinkedIn’s biggest win was the 10:1 ratio reduction in the number of machines used to host their services after switching from Ruby on Rails to Node.js […]
Read MoreNode.js – Big Brands – Enterprises who successfully adopted Node.js
Server Node.js during running is stored in memory, and in case some changes in the source code, we need to restart the process of Node.js program. In this situations we can perform restart server operation in manual way (by stop/start server process), but also we can automatize this process by using following file-watching tools, which […]
Read MoreNode.js Server & Monitoring for File Changes
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Strictly Necessary Cookies
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.