https://github.com/bvaughn/react-virtualized React virtualized libraries are react components for efficiently rendering large lists and tabular data. Here is demo components https://bvaughn.github.io/react-virtualized/#/components/List It can be used efficiently in crypto exchange projects, which displays large amount of real-time trade history data
bignumber.js
bignumber.js is a Javascript library which handles mathematical operations between big numbers (numbers which exceeds the range of current primitive number data types) In Javascript float operation is not absolutely accurate. For example, the result of 0.2 * 0.3 is 0.0599999999…, instead of 0.6. This is acceptable for normal mathematical operations but in crypto space, …
React Telegram Login
A Telegram OAuth Sign-in / Log-in Component for React https://www.npmjs.com/package/react-telegram-loginThis is a library which can be used when we embed telegram on websites. Login widget will not work on localhost or local-ip-address. Use should create and register your bot domain with BotFather to get that work. You can create your custom domain. For example: yourdomain.local by add new record point …
How to solve Memory size issue when running `npm install`
Sometimes npm install commands fails because memory size is small. In that case, if we can resolve the issue my using some hard disk space as a swap memory. We can find more details about swap memory here. https://www.centos.org/docs/5/html/5.2/Deployment_Guide/s1-swap-what-is.html
Styled component
Instead of separating HTML and CSS, we can embed all CSS styles into HTML. especially in React components. The advantage of Styled component is that we can use variables inside CSS styles without any limitation. This feature is very useful when implementing mobile responsive. https://www.styled-components.com/docs/basics
Autosizer Library
Autosizer is a React component which is convenient to use when implementing mobile responsive. We can wrap any component using Autosizer, and Autosizer propagates width and height of the component to it’s child components. Child components can use this width and height to implement responsive. Autosizer is especially useful when used together with Styled Components. …