Cryptonote is a cryptocurrency like Bitcoin, Ethereum, etc. Many coins like Dash, PIVX are forked from Bitcoin but Cryptonote has a completely different codebase like Ethereum. Cryptonote is very convenient to fork; it’s official Readme explains that method in detail. There are several cryptocurrencies which are forked from Cryptonote like Monero, which is 9th ranking …
Relay
Relay is a library to interact with GraphQL. https://facebook.github.io/relay/ It is used in React projects to communicate with GraphQL backend. There are 2 most widely used GraphQL front-end frameworks – Relay and Apollo. Relay is mainly used for large scale applications.
Cezerin – Ecommerce Progressive Web Apps
Cezerin is React and Node.js based eCommerce platform. Allows creating a Progressive Web Apps. Built with: Node.js v8.9 React v16 Redux Express Babel WebPack 4 MongoDB Installation with GitHub with Docker How to deploy a Cezerin on Ubuntu 16.04 How to deploy a Cezerin on Ubuntu 18.04.1 (from GitHub) Requirements Node.js >= 8 MongoDB >= …
CKEditor – Fully Customizable Editor
CKEditor is a WYSIWYG rich text editor which enables writing content directly inside of web pages or online applications. Its core code is written in JavaScript and it is available under open source and commercial licenses. https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/installation.html CKEditor supports React, Vue, Angular, Electron, Bootstrap, jQuery, webpack and NPM Reference: https://ckeditor.com/
Cezerin – Ecommerce Progressive Web Apps
Cezerin is React and Node.js based eCommerce platform. Allows creating a Progressive Web Apps. Built with: Node.js v8.9 React v16 Redux Express Babel WebPack 4 MongoDB Store Single-Page Application with React server-side rendering. Demo store
Securing Cookies
Prevent the use of a cookie on the client side with HttpOnly A cookie can be set and used according to the instruction of a web server, but also directly on the web browser via JavaScript. In an XSS breach case, an attacker could inject some Javascript, and potentially access to the cookies that, as …
Rx JS
RxJS is one of the hottest libraries in web development today. Offering a powerful, functional approach for dealing with events and with integration points into a growing number of frameworks, libraries, and utilities, the case for learning Rx has never been more appealing. Couple this with the ability to utilize your knowledge across nearly any language, having …
Scheduling Jobs on the Server for Meteor project
Scheduling jobs and running them on the server is one of the main problems we need to handle on our projects since it helps a lot of stuff such as auto email sending functionality, auto data pulling functionality, auto cleaning functionality etc. We are normally using daemon to schedule and run jobs on the server. …
Mup (Meteor Up)
There are several ways to deploy the meteor project to the server. Mup(Meter Up) is one of them widely used in development meteor applications. It deploys the meteor app to the server automatically with few commands. Behind the Mup, docker containers are running on the server for app and database. Since it is very popular …