create-express-kickstart 1.2.3 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -82,3 +82,10 @@ const restrictedRoute = asyncHandler(async (req, res) => {
|
|
|
82
82
|
|
|
83
83
|
### `asyncHandler`
|
|
84
84
|
A wrapper for your async route handlers that eliminates the need for repetitive `try-catch` blocks.
|
|
85
|
+
## 🤝 Contributing & Repository
|
|
86
|
+
|
|
87
|
+
Love this tool? Want to add a feature or fix a bug?
|
|
88
|
+
Feel free to open an issue or submit a pull request on our GitHub Repository!
|
|
89
|
+
|
|
90
|
+
🔗 **GitHub Repository:** [https://github.com/aasifashraf/create-express-kickstart](https://github.com/aasifashraf/create-express-kickstart)
|
|
91
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-express-kickstart",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "Production-ready CLI starter for Express APIs",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -18,8 +18,15 @@
|
|
|
18
18
|
"template",
|
|
19
19
|
"boilerplate"
|
|
20
20
|
],
|
|
21
|
-
"author": "
|
|
21
|
+
"author": "aasifashraf",
|
|
22
22
|
"license": "ISC",
|
|
23
23
|
"type": "module",
|
|
24
|
-
"
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/aasifashraf/create-express-kickstart.git"
|
|
27
|
+
},
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/aasifashraf/create-express-kickstart/issues"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/aasifashraf/create-express-kickstart#readme"
|
|
25
32
|
}
|