Netlify is one of the most amazing web development platform which is meant to multiply your productivity in the best possible way. The platform helps developers to build, test, and deploy websites. We can use netlify cli to deploy website in short time. And then just we can do deploy with following cli in the …
React Storefront
React storefront is an open source project which is based on Next.js. It is designed to use in frontend of ecommerce projects. We can connect React storefront with several ecommerce backend like Magento, Shopify, by simplying using open source connectors. React storefront also provides PWA functionality. https://docs.reactstorefront.io/
Hasura
The Hasura GraphQL engine makes your data instantly accessible over a real-time GraphQL API, so you can build and ship modern apps and APIs faster. Hasura connects to your databases, REST servers, GraphQL servers, and third party APIs to provide a unified realtime GraphQL API across all your data sources. Introduction To use the Hasura …
Reaction Commerce
Reaction Commerce is an open source E-Commerce platform. We can implement basic ecommerce functionalities without additional coding. We just need to setup the platform using docker and we can do basic ecommerce functionalities like create product, create order, create tag, cart, etc. https://reactioncommerce.com/ https://github.com/reactioncommerce/reaction We can use this platform when we need to develop ecommerce …
Marked.js
Marked.js is a library which converts markdown template to html. There are several libraries which do the same job. The main advantage of this library is strong feature to customize the logic and well defined documentation. https://marked.js.org/
Basic auth configuration for specific URL using Nginx.
When you want to secure specific URL or route, you can configure Basic auth using Nginx. First install apache2-utils as apt dependency. You can add usernames to .htpasswd by running the following command. The username we’ve chosen is alice, of course, change this to fit your requirements. Next, we’ll need to add a hashed password to the user …
AWS Fargate
WS Fargate is a serverless compute engine for containers that works with both Amazon Elastic Container Service (ECS) and Amazon Elastic Kubernetes Service (EKS). Fargate makes it easy for you to focus on building your applications. Fargate removes the need to provision and manage servers, lets you specify and pay for resources per application, and improves security through …
ResizeObserver Polyfill
A polyfill for the Resize Observer API. Implementation is based on the MutationObserver and uses Mutation Events as a fall back if the first one is not supported, so there will be no polling unless DOM changes. Doesn’t modify observed elements. Handles CSS transitions/animations and can possibly observe changes caused by dynamic CSS pseudo-classes, e.g. …
iFrameResizer
iFrameResizer is a simple library which provides functionality to resize the height of iframe based on it’s content. It’s very useful when we adjust the size of iframe so that we prevent scrolling inside the iframe. Here are reference links. http://davidjbradshaw.github.io/iframe-resizer/ https://github.com/davidjbradshaw/iframe-resizer
Adding Swagger To Existing Node.js Project
Today, almost every application has to be connected and to share data with other applications. The best way to do that is throughAPIs. For a long time there hasn’t been any industry standard for designing and documenting APIs. And API without a good documentation on how to use it, is useless. Because of that, developers have …