Build a prototype webshop from scratch
Create a new Next.js project:
$ npx create-next-app myProject
Add some dependencies. I’ll be using semantic-ui-react
so we can quickly make a nice layout:
$ yarn add semantic-ui-css semantic-ui-react
I also prefer to use Sass,a CSS preprocessor that adds a layer of functionality on top of regular CSS (or “CSS with superpowers,” as they say themselves). For that, we need to add one more dependency:
$ yarn add sass
And finally, our root directory contains these folders:
Create the ones that don’t exist yet. We’ll have a look at their content soon, starting with the data
directory.
Article covers: How native is react native?, React Native vs (Ionic, Cordova), Similarities and difference between React Native and Native App Development.
Increase Performance of React Applications Via Array JavaScript Methods. We will create a simple event management application in the react to add, update, and delete an event.
Bunch of VSCode Extensions that improve quality of your coding time no matter what stack you are using. In this post, you'll see Top VSCode Extensions for React, React Native, JavaScript and Productivity
Qual a relação entre Java e JavaScript, C e C++, React e React Native
I have been using React JS in my projects for quite some time now and am used to managing routing in my app using the react-router package. I have always been keen on having as little dependencies in my apps as possible, so, I always felt perturbed by the use of this particular package in simpler apps which did not have complex routes.