diff --git a/content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/101-prisma.md b/content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/101-prisma.md index 7b169bebf..77961287a 100644 --- a/content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/101-prisma.md +++ b/content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/101-prisma.md @@ -1 +1,7 @@ -# Prisma \ No newline at end of file +# Prisma + +Prisma is an open source next-generation ORM in the TypeScript ecosystem. It offer a dedicated API for relation filters. It provide an abstraction layer that makes you more productive compared to writing SQL. Prisma currently supports `PostgreSQL`, `MySQL`, `SQL Server`, `SQLite`, `MongoDB` and `CockroachDB`. + + +Free Content +Prisma Website \ No newline at end of file diff --git a/content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/102-native-drivers.md b/content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/102-native-drivers.md index 56ed4e085..9fc283e98 100644 --- a/content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/102-native-drivers.md +++ b/content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/102-native-drivers.md @@ -1 +1,3 @@ -# Native drivers \ No newline at end of file +# 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/) \ No newline at end of file diff --git a/content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/101-forever.md b/content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/101-forever.md index 4515b1850..e882006d8 100644 --- a/content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/101-forever.md +++ b/content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/101-forever.md @@ -1 +1,7 @@ -# Forever \ No newline at end of file +# Forever + +Forever is a node.js package for ensuring that a given script runs continuously (i.e. forever) even when the server crash/stops. A CLI tool for the production environment to manage the Node applications and their processes. + + +Free Content +Forever package documentation diff --git a/content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/102-nohup.md b/content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/102-nohup.md index b59c58107..c10bc6108 100644 --- a/content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/102-nohup.md +++ b/content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/102-nohup.md @@ -1 +1,8 @@ -# Nohup \ No newline at end of file +# Nohup + +Nohup, short for no hang up is a command in Linux systems that keep processes running, will ignore the SIGHUP signal even after exiting the shell or terminal. + + +Free Content +Nohup command +geekforgeeks Nohup example