0.9.1 • Published 5 months ago

prisma-packaged v0.9.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Prisma Packaged

A PrismaDB extension library that add some usefull functionalities.

This library was created originally with the purpose of supporting prisma and sqlite on a Electron application. As it was evolving, it became a prisma extension adding extra funcionalities like:

  • Run prisma cli commands inside the application
  • Verify when database migrations are needed and run them programatically
  • Run prisma on packaged apps, like electron.

The solutions on this package where inspired (but not the same) by this Article and Repository from Ayron Wohletz.

Usage

This package is an extension to Prisma, so first you need to do the initial Prisma setup on your project.

npm install prisma

Then, we need to initiate it, with the command:

npx prisma init

This will create a folder called Prisma into your project root, with a schema.prisma file inside.

This file will be where you declare your models.

For more informations about setting up prisma, check the official documentation here

Now for this package, first we need to install it:

npm install prisma-packaged

And we can import it like this:

import { PrismaInitializer } from 'prisma-packaged'

This is a class that requires two params:

  • The first one is the database connection string, the same one you usually would put on the .env file. You could just passthrough the value from the .env, or you could read it from whenever you want, this is part of what is cool about this package.

  • The secone one is the name of your latest migration. You need to update this every time there's a new migration (Or you could write some code to get this automatically, that's up to you 😊)

import { PrismaInitializer } from 'prisma-packaged'

const dbConnection = 'mysql://user:password@host:port/database'
const dbMigration = '2023_mylatestcoolmigration'

const initializer = new PrismaInitializer(dbConnection, dbMigration)

Now that we have initiated our class, we can use our prisma connection like this:

import { PrismaInitializer } from 'prisma-packaged'

const dbConnection = 'mysql://user:password@host:port/database'
const dbMigration = '2023_mylatestcoolmigration'

const initializer = new PrismaInitializer(dbConnection, dbMigration)

const prisma = initializer.prisma

And now we have your regular Prisma Client object, with all the properties that you use for querying the database.

We also have a async function called verifyMigration(), that returns a boolean that tells you if you have a pending migration on the current database.

This function needs the current prisma connection as a parameter.

import { PrismaInitializer } from 'prisma-packaged'

const dbConnection = 'mysql://user:password@host:port/database'
const dbMigration = '2023_mylatestcoolmigration'

const initializer = new PrismaInitializer(dbConnection, dbMigration)

const prisma = initializer.prisma

initializer.checkMigration(prisma).then(() => {
  //Do something
})

And now we get to running the migration itself, and we have the function runMigration() that does exactly this.

import { PrismaInitializer } from 'prisma-packaged'

const dbConnection = 'mysql://user:password@host:port/database'
const dbMigration = '2023_mylatestcoolmigration'

const initializer = new PrismaInitializer(dbConnection, dbMigration)

const prisma = initializer.prisma

initializer.checkMigration(prisma).then((response) => {
  if (response) initializer.runMigration()
})

And just to finalize the features of this package, we can also run any Prisma CLI commands at execution time, using the async function runPrismaCommand(), that takes two params:

  • The command itself, using an string array of the words needed
  • The database connection string

As an example, let's copy how the runMigration() function does it's migration magic using the runPrismaCommand() function:

import { PrismaInitializer } from 'prisma-packaged'

const dbConnection = 'mysql://user:password@host:port/database'
const dbMigration = '2023_mylatestcoolmigration'

const initializer = new PrismaInitializer(dbConnection, dbMigration)

const prisma = initializer.prisma

initializer.checkMigration(prisma).then((response) => {
  if (response) initializer.runMigration()
})

initializer
  .runPrismaCommand({
    command: ['migrate', 'deploy', '--schema', 'path to schema file'],
    dbUrl: dbConnection
  })
  .then(() => {
    console.log('Hey, i did a migration by myself!')
  })

This package is still a work in progress, so all feedback is valid!

0.9.1

5 months ago

0.9.0

5 months ago

0.8.8

5 months ago

0.8.7

6 months ago

0.8.6

6 months ago

0.8.5

6 months ago

0.8.4

6 months ago

0.8.3

6 months ago

0.8.2

6 months ago

0.8.1

6 months ago

0.8.0

6 months ago