An open API service indexing awesome lists of open source software.

https://github.com/sahasourav17/calculator-reactjs


https://github.com/sahasourav17/calculator-reactjs

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# Calculator

A application made using `React`. I've learning `react` by doing small projects like that. As I'm a newbie in this framework, I've to
search for many things and syntaxes to build this application.

## Screenshots:





## Installation
If you have `node.js` installed on your computer then you can do the following to create a `react application`

```bash
npm i -g create-react-app

create-react-app ./app-name
```

## To Run this Project

First, clone this repository
```bash
git clone git@github.com:sahasourav17/Calculator-ReactJS.git
```

After cloning

```bash
cd Calculator-ReactJS/calculator
```

Then, run the following command and it will run the `react app` in your localhost.

```bash
npm start
```

### Error and Fixes

If you face the follwing error
```bash
sh 1: react-scripts not found
```

#### Fix 1:
- delete `package-lock.json` file
- Run
```bash
npm start
```
[Show this Thread for more info](https://stackoverflow.com/questions/40546231/sh-react-scripts-command-not-found-after-running-npm-start)