Installing “Create React App”
Much like Angular and VueJS, React also has it’s own CLI; it’s called Create-React-App. Before we start creating our interface with Bulma, you’ll need to jump start the React application by running a few commands.
npm install -g create-react-app create-react-app <project-name> cd <project-name> npm start
A local server will start and your React app will initialize.