Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cristianofilho/calculator-reactapp
Calculator React App
https://github.com/cristianofilho/calculator-reactapp
reactjs
Last synced: about 1 month ago
JSON representation
Calculator React App
- Host: GitHub
- URL: https://github.com/cristianofilho/calculator-reactapp
- Owner: CristianoFIlho
- License: mit
- Created: 2022-06-24T00:37:24.000Z (over 2 years ago)
- Default Branch: develop
- Last Pushed: 2023-03-15T09:41:06.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T02:01:54.409Z (8 months ago)
- Topics: reactjs
- Language: JavaScript
- Homepage: https://calculator-react-app-two.vercel.app/
- Size: 1.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Deploy
https://calculator-react-app-two.vercel.app/
![Calculator-ReactApp](https://user-images.githubusercontent.com/54041918/175449265-d84595e6-613b-4994-ad55-366ab8f9f5ee.gif)
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.The page will reload when you make changes.\
You may also see any lint errors in the console.### `npm test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `Dockerfile properts`
```docker
FROM node:14WORKDIR /app
COPY package.json .
RUN npm installCOPY . .
CMD ["npm", "start"]
```
### `Docker build`
```docker
docker build -t calculator-app .
```### `Docker run`
```docker
docker run -p 3000:3000 calculator-app
```