Skip to content

Commit ea46713

Browse files
committed
editor config file added
1 parent cf5398b commit ea46713

1 file changed

Lines changed: 52 additions & 0 deletions

File tree

data/editor-config.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"id": "axios-cheat-sheet",
3+
"title": "এক্সিয়স",
4+
"slug": "axios-cheat-sheet",
5+
"description": "এক্সিয়স চিটশিট",
6+
"colorPref": "#2F3D75",
7+
"contents": [{
8+
"title": "ইন্সটল প্রক্রিয়া",
9+
"items": [{
10+
"definition": "(npm) দিয়ে ইন্সটল করার জন্য",
11+
"code": "npm i axios"
12+
},
13+
{
14+
"definition": "(yarn) দিয়ে ইন্সটল করার জন্য",
15+
"code": "yarn add axios"
16+
},
17+
{
18+
"definition": "(jsDelivr) সিডিএন দিয়ে ইন্সটল করার জন্য",
19+
"code": "<script src=https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js></script>"
20+
},
21+
{
22+
"definition": "(unpkg) সিডিএন দিয়ে ইন্সটল করার জন্য",
23+
"code": "<script src=https://unpkg.com/axios/dist/axios.min.js></script>"
24+
},
25+
{
26+
"definition": "বওয়ের দিয়ে ইন্সটল করার জন্য",
27+
"code": "bower install axios"
28+
}
29+
]
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+
]
50+
}
51+
]
52+
}

0 commit comments

Comments
 (0)