Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nx-tools/nx-prisma

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nx-tools/nx-prisma

This builder provides a wrapper around the [Prisma CLI](https://www.npmjs.com/package/@prisma/cli)

  • 4.0.0-alpha.9
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@nx-tools/nx-prisma

This builder provides a wrapper around the Prisma CLI

Getting started

Configuration

The first step to use this plugin is configure your projects and create new targets.

You will need at least one project per each prisma schema you make. The prisma schemas can be in already existing backend/frontend projects OR in their own libraries. Each CLI command uses it's own architect so add the ones you need from the examples bellow.

"prisma-deploy": {
  "builder": "@nx-tools/nx-prisma:generate",
  "options": {
    "schema": "apps/api/schema.prisma"
  }
},
"prisma-generate": {
  "builder": "@nx-tools/nx-prisma:generate",
  "options": {
    "schema": "apps/api/schema.prisma"
  }
},
"prisma-migrate": {
  "builder": "@nx-tools/nx-prisma:migrate",
  "options": {
    "schema": "apps/api/schema.prisma"
  }
},
"prisma-pull": {
  "builder": "@nx-tools/nx-prisma:pull",
  "options": {
    "schema": "apps/api/schema.prisma"
  }
},
"prisma-push": {
  "builder": "@nx-tools/nx-prisma:push",
  "options": {
    "schema": "apps/api/schema.prisma"
  }
},
"prisma-reset": {
  "builder": "@nx-tools/nx-prisma:reset",
  "options": {
    "schema": "apps/api/schema.prisma"
  }
},
"prisma-seed": {
  "builder": "@nx-tools/nx-prisma:seed",
  "options": {
    "script": "apps/examples/prisma/data/seed.ts",
    "tsConfig": "apps/examples/prisma/tsconfig.tools.json"
  }
},
"prisma-status": {
  "builder": "@nx-tools/nx-prisma:status",
  "options": {
    "schema": "apps/api/schema.prisma"
  }
}

Note that the options use absolute paths to where your configuration files live in your repository.

Usage

Once your project is configured and taking the previous configuration as example, you can run the commands using the the nx command:

nx run project-name:prisma-generate

FAQs

Package last updated on 02 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc