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.
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 …
Expo
https://expo.io/ Expo is a free and open source toolchain built around React Native to help you build native iOS and Android apps using JavaScript and React. It is the fastest method to develop React Native applications. Most benefit is that we can test the mobile application in a mobile device even the device is not …
FileMaker
FileMaker is a cross-platform relational database application. It integrates a database engine with a graphical user interface (GUI) and security features, allowing users to modify the database by dragging new elements into layouts, screens, or forms. We can simply build the UI by drag & drop, and then integrate the UI with the database easily …
GraphQL
GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data. GraphQL provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables …
Gatsby
Gatsby is a React framework to develop websites in short time. It is a fast modern site generator. Gatsby provides convenient functionalities to develop landing pages very quickly. Also according to Gatsby’s documentations it is widely used in E-Commerce website development. It’s very easy to learn for the developers who knows React.js very well. https://www.gatsbyjs.org/docs/
Store functions in localStorage
We can only store string data to localStorage and sometimes we need to store methods and invoke later. In order to do this, Javascript provides functionality to stringify methods. Here is an example function. const func = function sum(a, b) { return a + b; } func.toString() returns a string like function sum(a, b) { …