
Next.js is React Framework created by Vercel. The recommended way to host a next.js app is directly on Vercel. But if you need to host a Next.JS app on GitHub pages it will require a few additional steps. Here is a full guide:
Read More…Next.js is React Framework created by Vercel. The recommended way to host a next.js app is directly on Vercel. But if you need to host a Next.JS app on GitHub pages it will require a few additional steps. Here is a full guide:
Read More…GitHub Pages allows you to host static resources (HTML, CSS, and JavaScript) directly from your GitHub repositories.
There is an option for free hosting (limited to 1 repository per account using address username.github.io). You can also choose a paid account ($4 per user monthly) which in my option is a great choice.
Unfortunately, it is NOT possible to host server side rendering scripts, but for React you can export your react app to HTML/JS/CSS and host it on GitHub pages. Here is how it can be done:
Read More…I’ve recently face the following error when running React.JS app with Redux on my Ubuntu: ENOSPC: System limit for number of file watchers reached. Here is how to resolve it:
Read More…Here is a very simple example of React.JS Hooks: We have an Accordion component with activeIndex state which get updated on Accordion title click:
Read More…Here is an example of React.JS form submit. It has two Components App which renders another Component SearchBar with input. When customer fills the input field and submits it by clicking enter, the values is passed to parent component App which outputs the result to the console:
Read More…Here is a quick guide how to start with React.JS: Installation and creating a test app using it:
Read More…