Skip to content

Commit 27db370

Browse files
authored
Merge pull request #195 from khushi-purwar/dev-kp
Added Breaking Bad Characters
2 parents ecc4478 + c726625 commit 27db370

File tree

25 files changed

+482
-0
lines changed

25 files changed

+482
-0
lines changed

breaking-bad-characters/.gitignore

Lines changed: 23 additions & 0 deletions
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*

breaking-bad-characters/README.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Breaking Bad Characters - React Application
2+
3+
## About the Project
4+
A single page web application that uses the breaking bad API to display and filter characters from the show
5+
6+
## Technologies Used
7+
8+
- React
9+
- Hooks
10+
- Components
11+
- CSS
12+
- CSS Grid
13+
- Javascript
14+
- Axios
15+
- ES6
16+
- API
17+
- Breaking Bad API
18+
19+
20+
## API Used
21+
Breaking Bad Character API
22+
23+
Link : https://www.breakingbadapi.com/api/characters
24+
25+
## How to use the Project
26+
27+
1. Download or clone the repository `git clone https://github.com/Ayushparikh-code/Web-dev-mini-projects.git`
28+
2. Go to the directory
29+
3. Open the terminal, and type `npm start`
30+
31+
32+
## Screenshots
33+
34+
<p>Initially, it will show a loader</p>
35+
36+
<img src="https://github.com/khushi-purwar/Web-dev-mini-projects/blob/dev-kp/breaking-bad-characters/Screenshots/ss3.png" />
37+
38+
<p>After 3-4 seconds, it will load all the characters of the show</p>
39+
40+
<img src="https://github.com/khushi-purwar/Web-dev-mini-projects/blob/dev-kp/breaking-bad-characters/Screenshots/ss1.png" />
41+
42+
<p>Clicking on any image, it will show other information like Name, Nickname, Birthday, Occupation, Status...</p>
43+
44+
<img src="https://github.com/khushi-purwar/Web-dev-mini-projects/blob/dev-kp/breaking-bad-characters/Screenshots/ss2.png" />
45+
46+
<p>User can search a particular character by typing his/her name in the search box</p>
47+
48+
<img src="https://github.com/khushi-purwar/Web-dev-mini-projects/blob/dev-kp/breaking-bad-characters/Screenshots/ss4.png" />
49+
50+
51+
## Live Demo
52+
53+
<img src="https://github.com/khushi-purwar/Web-dev-mini-projects/blob/dev-kp/breaking-bad-characters/Screenshots/demo.gif" />
9.67 MB
Loading
1.08 MB
Loading
1.24 MB
Loading
130 KB
Loading
374 KB
Loading

breaking-bad-characters/package.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "breaking-bad-characters",
3+
"version": "0.1.0",
4+
"private": true,
5+
"dependencies": {
6+
"@testing-library/jest-dom": "^5.14.1",
7+
"@testing-library/react": "^11.2.7",
8+
"@testing-library/user-event": "^12.8.3",
9+
"axios": "^0.21.1",
10+
"react": "^17.0.2",
11+
"react-dom": "^17.0.2",
12+
"react-scripts": "4.0.3",
13+
"web-vitals": "^1.1.2"
14+
},
15+
"scripts": {
16+
"start": "react-scripts start",
17+
"build": "react-scripts build",
18+
"test": "react-scripts test",
19+
"eject": "react-scripts eject"
20+
},
21+
"eslintConfig": {
22+
"extends": [
23+
"react-app",
24+
"react-app/jest"
25+
]
26+
},
27+
"browserslist": {
28+
"production": [
29+
">0.2%",
30+
"not dead",
31+
"not op_mini all"
32+
],
33+
"development": [
34+
"last 1 chrome version",
35+
"last 1 firefox version",
36+
"last 1 safari version"
37+
]
38+
}
39+
}
1.12 KB
Binary file not shown.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<meta name="theme-color" content="#000000" />
8+
<meta
9+
name="description"
10+
content="Web site created using create-react-app"
11+
/>
12+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13+
<!--
14+
manifest.json provides metadata used when your web app is installed on a
15+
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16+
-->
17+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18+
<!--
19+
Notice the use of %PUBLIC_URL% in the tags above.
20+
It will be replaced with the URL of the `public` folder during the build.
21+
Only files inside the `public` folder can be referenced from the HTML.
22+
23+
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24+
work correctly both with client-side routing and a non-root public URL.
25+
Learn how to configure a non-root public URL by running `npm run build`.
26+
-->
27+
<title>Breaking Bad Cast</title>
28+
</head>
29+
<body>
30+
<noscript>You need to enable JavaScript to run this app.</noscript>
31+
<div id="root"></div>
32+
<!--
33+
This HTML file is a template.
34+
If you open it directly in the browser, you will see an empty page.
35+
36+
You can add webfonts, meta tags, or analytics to this file.
37+
The build step will place the bundled scripts into the <body> tag.
38+
39+
To begin the development, run `npm start` or `yarn start`.
40+
To create a production bundle, use `npm run build` or `yarn build`.
41+
-->
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)