Skip to content

Commit b7574ee

Browse files
Fresh CRA Instalation & CSV Parser Inital commit with sample CSV
0 parents  commit b7574ee

18 files changed

+15176
-0
lines changed

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

README.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
2+
3+
# PROJECT:
4+
5+
## Dependencies
6+
npm i react-csv-reader
7+
8+
# REACT:
9+
10+
## Available Scripts
11+
12+
In the project directory, you can run:
13+
14+
### `npm start`
15+
16+
Runs the app in the development mode.<br />
17+
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
18+
19+
The page will reload if you make edits.<br />
20+
You will also see any lint errors in the console.
21+
22+
### `npm test`
23+
24+
Launches the test runner in the interactive watch mode.<br />
25+
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
26+
27+
### `npm run build`
28+
29+
Builds the app for production to the `build` folder.<br />
30+
It correctly bundles React in production mode and optimizes the build for the best performance.
31+
32+
The build is minified and the filenames include the hashes.<br />
33+
Your app is ready to be deployed!
34+
35+
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
36+
37+
### `npm run eject`
38+
39+
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
40+
41+
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
42+
43+
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
44+
45+
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
46+
47+
## Learn More
48+
49+
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
50+
51+
To learn React, check out the [React documentation](https://reactjs.org/).
52+
53+
### Code Splitting
54+
55+
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
56+
57+
### Analyzing the Bundle Size
58+
59+
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
60+
61+
### Making a Progressive Web App
62+
63+
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
64+
65+
### Advanced Configuration
66+
67+
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
68+
69+
### Deployment
70+
71+
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
72+
73+
### `npm run build` fails to minify
74+
75+
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
76+

SampleCSVFile.csv

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
1,"Eldon Base for stackable storage shelf, platinum",Muhammed MacIntyre,3,-213.25,38.94,35,Nunavut,Storage & Organization,0.8
2+
2,"1.7 Cubic Foot Compact ""Cube"" Office Refrigerators",Barry French,293,457.81,208.16,68.02,Nunavut,Appliances,0.58
3+
3,"Cardinal Slant-D� Ring Binder, Heavy Gauge Vinyl",Barry French,293,46.71,8.69,2.99,Nunavut,Binders and Binder Accessories,0.39
4+
4,R380,Clay Rozendal,483,1198.97,195.99,3.99,Nunavut,Telephones and Communication,0.58
5+
5,Holmes HEPA Air Purifier,Carlos Soltero,515,30.94,21.78,5.94,Nunavut,Appliances,0.5
6+
6,G.E. Longer-Life Indoor Recessed Floodlight Bulbs,Carlos Soltero,515,4.43,6.64,4.95,Nunavut,Office Furnishings,0.37
7+
7,"Angle-D Binders with Locking Rings, Label Holders",Carl Jackson,613,-54.04,7.3,7.72,Nunavut,Binders and Binder Accessories,0.38
8+
8,"SAFCO Mobile Desk Side File, Wire Frame",Carl Jackson,613,127.70,42.76,6.22,Nunavut,Storage & Organization,
9+
9,"SAFCO Commercial Wire Shelving, Black",Monica Federle,643,-695.26,138.14,35,Nunavut,Storage & Organization,
10+
10,Xerox 198,Dorothy Badders,678,-226.36,4.98,8.33,Nunavut,Paper,0.38

0 commit comments

Comments
 (0)