refactor: nodejs roadmap resources (#8371)
Co-authored-by: Arik Chakma <arikchangma@gmail.com>pull/8385/head^2
parent
55efe7f954
commit
d6b0357ee7
70 changed files with 113 additions and 117 deletions
@ -1,3 +1,7 @@ |
||||
# Native Drivers |
||||
|
||||
Another way to connect to different databases in Node.js is to use the official native drivers provided by the database. For example, here is the [list of drivers by MongoDB](https://www.mongodb.com/docs/drivers/) |
||||
Another way to connect to different databases in Node.js is to use the official native drivers provided by the database. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
[@official@MongoDB Drivers](https://www.mongodb.com/docs/drivers/) |
||||
|
@ -1,10 +1,12 @@ |
||||
# Nodemon |
||||
|
||||
In Node.js, you need to restart the process to make changes take effect. This adds an extra step to your workflow. You can eliminate this extra step by using [nodemon](https://nodemon.io/) or [PM2](https://pm2.keymetrics.io/docs/usage/quick-start/) to restart the process automatically. |
||||
In Node.js, you need to restart the process to make changes take effect. This adds an extra step to your workflow. You can eliminate this extra step by using nodemon or PM2 to restart the process automatically. |
||||
|
||||
`nodemon` is a command-line interface (CLI) utility developed by [@rem](https://twitter.com/rem) that wraps your Node app, watches the file system, and automatically restarts the process. |
||||
`nodemon` is a command-line interface (CLI) utility developed by rem that wraps your Node app, watches the file system, and automatically restarts the process. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@official@Nodemon](https://nodemon.io/) |
||||
- [@article@PM2](https://pm2.keymetrics.io/docs/usage/quick-start/) |
||||
- [@article@How To Restart Your Node.js Apps Automatically with nodemon](https://www.digitalocean.com/community/tutorials/workflow-nodemon) |
||||
- [@feed@Explore top posts about Node.js](https://app.daily.dev/tags/nodejs?ref=roadmapsh) |
||||
|
Loading…
Reference in new issue