Added content to prisma.md and native-drivers.md (#2227)

* Added content to prisma.md and native-drivers.md

* Content added to forever.md

* link updated to forever documentation

* Content added to Nohup.md with links

* Update content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/102-native-drivers.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
pull/2212/head^2
Tanvi 2 years ago committed by GitHub
parent ec449ccb02
commit be2cd52083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/101-prisma.md
  2. 4
      content/roadmaps/107-nodejs/content/110-nodejs-databases/101-document/102-native-drivers.md
  3. 6
      content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/101-forever.md
  4. 7
      content/roadmaps/107-nodejs/content/113-nodejs-keep-app-running-prod/102-nohup.md

@ -1 +1,7 @@
# Prisma # 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`.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://www.prisma.io/'>Prisma Website</BadgeLink>

@ -1 +1,3 @@
# Native drivers # 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/)

@ -1 +1,7 @@
# Forever # 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.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.npmjs.com/package/forever'>Forever package documentation</BadgeLink>

@ -1 +1,8 @@
# Nohup # 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.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.digitalocean.com/community/tutorials/nohup-command-in-linux'>Nohup command</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.geeksforgeeks.org/nohup-command-in-linux-with-examples/'>geekforgeeks Nohup example</BadgeLink>

Loading…
Cancel
Save