You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ Heavily inspired from [Egghead.io - How to Write an Open Source JavaScript Libra
31
31
| API parameter validation via [express-validation](https://www.npmjs.com/package/express-validation)| Validate body, params, query, headers and cookies of a request (via middleware) and return a response with errors; if any of the configured validation rules fail. You won't anymore need to make your route handler dirty with such validations. |
32
32
| Pre-commit hooks | Runs lint and tests before any commit is made locally, making sure that only tested and quality code is committed
33
33
| Secure app via [helmet](https://github.com/helmetjs/helmet)| Helmet helps secure Express apps by setting various HTTP headers. |
34
+
| Uses [yarn](https://yarnpkg.com) over npm | Uses new released yarn package manager by facebook. You can read more about it [here](https://code.facebook.com/posts/1840075619545360)|
34
35
35
36
- CORS support via [cors](https://github.com/expressjs/cors)
36
37
- Uses [http-status](https://www.npmjs.com/package/http-status) to set http status code. It is recommended to use `httpStatus.INTERNAL_SERVER_ERROR` instead of directly using `500` when setting status code.
0 commit comments