Skip to content

Commit 84486eb

Browse files
authored
Merge pull request #630 from mrhrifat/develop
Edit Installation and Add Request Section of Axios
2 parents 56664c4 + 88e4099 commit 84486eb

1 file changed

Lines changed: 23 additions & 5 deletions

File tree

data/axios-cheat-sheet.json

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44
"slug": "axios-cheat-sheet",
55
"description": "এক্সিয়স চিটশিট",
66
"colorPref": "#2F3D75",
7-
"contents": [
8-
{
7+
"contents": [{
98
"title": "ইন্সটল প্রক্রিয়া",
10-
"items": [
11-
{
9+
"items": [{
1210
"definition": "(npm) দিয়ে ইন্সটল করার জন্য",
13-
"code": "npm install axios"
11+
"code": "npm i axios"
1412
},
1513
{
1614
"definition": "(yarn) দিয়ে ইন্সটল করার জন্য",
@@ -29,6 +27,26 @@
2927
"code": "bower install axios"
3028
}
3129
]
30+
},
31+
{
32+
"title": "রিকোয়েস্ট উদাহরণ",
33+
"items": [{
34+
"definition": "ডাটা get এর জন্য",
35+
"code": "axios.get()"
36+
},
37+
{
38+
"definition": "ডাটা post এর জন্য",
39+
"code": "axios.post()"
40+
},
41+
{
42+
"definition": "ডাটা delete এর জন্য",
43+
"code": "axios.delete()"
44+
},
45+
{
46+
"definition": "সিঙ্গেল ডাটা মডিফাই করার জন্য",
47+
"code": "axios.put()"
48+
}
49+
]
3250
}
3351
]
3452
}

0 commit comments

Comments
 (0)