https://github.com/sahasourav17/calculator-reactjs
https://github.com/sahasourav17/calculator-reactjs
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sahasourav17/calculator-reactjs
- Owner: sahasourav17
- License: mit
- Created: 2022-12-23T06:01:50.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-30T16:38:56.000Z (almost 3 years ago)
- Last Synced: 2025-01-07T21:47:00.002Z (9 months ago)
- Language: JavaScript
- Size: 346 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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-appcreate-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)