Skip to main content

Posts

Showing posts from March, 2018

Starting with ReactJS new project with create-react-app

React is a javascript library which is used for creation of front-end for your web applications. One of the most popular way to create a react application is using create-react-app command. In order to use it, please install this from the link To create a new app, use the following command create-react-app   my-app-name  To start the development server, change directory to the newly created app and run npm start