Best of Prisma2021

  1. 1
    Article
    Avatar of phProduct Hunt·4y

    Throw-Me - A hassle free URL shortener

  2. 2
    Article
    Avatar of guildThe Guild·4y

    GraphQL Code Generator with TypeScript and Prisma models

    GraphQL has some amazing tools that can make your life easier. One of those tools is GraphQL Code-Generator which helps you create types (and more) based on your GraphQL schema. This article covers the process of using Prisma with GraphQL codegen and the configuration flags that will boost your experience.

  3. 3
    Article
    Avatar of logrocketLogRocket·5y

    End-to-end type safety with Next.js, Prisma, and GraphQL

    Using consistent types across the entire stack is a major challenge for many development teams. If you have insufficient tooling for detecting changes and throwing errors, changing types in one part of the project could break your entire application. In this tutorial, we’ll explore end-to-end type safety by building a simple wish list application that allows a user to bookmark items from the internet. We will use Next.js, GraphQL, and Prisma.

  4. 4
    Article
    Avatar of hashnodeHashnode·4y

    Intro to Prisma and TypeScript

    Prisma is a next-gen "ORM" with a unique "data-mapper" model. Prisma also offers a database migration tool called Prisma Migrate and a nice GUI that allows you to visualize and update data. This tutorial will assume a basic knowledge of JavaScript, TypeScript, and Database Terminology.

  5. 5
    Article
    Avatar of tilThis is Learning·4y

    It's Prisma Time - Setup

    In this article I show you how to setup a project with Prisma. The Prisma CLI helps us to create, update or view our database. In the next article we are going to create our first table using Prisma and we will start playing with this tool.

  6. 6
    Article
    Avatar of flaviocopesFlavio Copes·5y

    How to use Prisma

    Prisma is an interesting ORM. An ORM is an abstraction layer over a database. I’ve had the pleasure to use Prisma in a few different projects in the past months. Here I want to show you how easy it is to get started (and keep going)