Best of Prisma2022

  1. 1
    Article
    Avatar of communityCommunity Picks·4y

    Fully Typed Web Apps

    The secret to fully typed web apps is typing the boundaries. There are plenty of examples of boundaries you’ll encounter on the web. There’s a handy utility I use in almost all my projects to make this slightly nicer on the eyes. It's just a tricky problem because TypeScript doesn’t know your conventions or config.

  2. 2
    Article
    Avatar of devtoDEV·4y

    Build a Full Stack App with Next.js, Tailwind, tRPC and Prisma ORM

    When we create a TypeScript project that has both a Rest Api and a web app, it becomes challenging to keep type definitions concise in the long run. This is where tRPC comes in, with this toolkit it is possible to create a totally type safe application by only using inference.

  3. 3
    Article
    Avatar of communityCommunity Picks·3y

    How to solve coding issues using ChatGPT

    The most direct way to avoid a side effect is to use a separate process. So how would you do that if the job is assigned to you? I will use the npm command. So let’s ask the omniscient again: This looks like a clean solution to me.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Learn NestJS by Building a CRUD API

    NestJS is a framework for building efficient, scalable Node.js web applications. It is a complete development kit for building scalable server-side apps. You will learn how to create a bookmarks API from scratch using NestJS, Docker, Postgres, Passport.js, Prisma and pactum.

  5. 5
    Article
    Avatar of changelogChangelog·4y

    spacedriveapp/spacedrive: Spacedrive is an open source cross-platform file explorer, powered by a virtual distributed filesystem written in Rust.

    Spacedrive combines the storage capacity and processing power of your devices into one personal distributed cloud. Spacedrive provides a file management experience like no other, and its completely free. Most of the listed features are still experimental and subject to change. Links are for highlight purposes only until feature specific documentation is complete.

  6. 6
    Article
    Avatar of dzDZone·4y

    How to Build a Full-stack App

    In this article, we’ll learn how to build a Full-stack application using Next.js, Prisma, Postgres, and Fastify. We will build an attendance management demo application that manages employees’ attendance. The flow of the app is simple: an administrative user logs in, creates an attendance sheet for the day, then every employee signs in and out of the attendance sheet.

  7. 7
    Article
    Avatar of hashnodeHashnode·4y

    Node.js ORMs overview and comparison

    ORM is a library to access the database, high-level library where you can define models, relations. Ideal ORM allows to define queries and then combine and reuse them to construct more complex queries. I'll share my experience of working with 6 popular ORMs including knex which is query builder.

  8. 8
    Article
    Avatar of communityCommunity Picks·4y

    How to Build a Fullstack App with Next.js, Prisma, and PostgreSQL

    Next.js is a next-generation ORM that can be used to access a database in Node.js and TypeScript applications. In this guide, you'll learn how to implement a fullstack sample blogging application using the following technologies. You'll use a single PrismaClient instance that you can import into any file where it's needed. You can create a new User record by calling prisma.create() or retrieve all the Post records from the database.

  9. 9
    Article
    Avatar of ghblogGitHub Blog·4y

    Release Radar · June 2022 Edition

    Capri 4.0 is a fast, low resource, web framework for Node.js. The latest version comes with an even faster system, synchronous route registration, and new Pino transports. Capri aims to address this by creating static sites that support islands architecture. This type of website design provides better accessibility and faster load times. Check out the project and add some music to your community.

  10. 10
    Article
    Avatar of logrocketLogRocket·4y

    The best TypeScript ORMs

    object-relational mappers (ORMs) have been a controversial subject amongst many developers. In some cases, poorly-written ORMs may lead to performance bottlenecks when compared with raw queries. In other cases, ORMs can come in handy when you need quick and easy access to database methods.

  11. 11
    Article
    Avatar of asayerasayer·4y

    Working with databases in Next.js using Prisma

    Next.js uses Prisma as an ORM to manage your database with no hustle. Next.js is a database-agnostic web-based framework. You can use Prisma to model your database data structure when working with databases. The models can be slightly different if you use a NoSQL MongoDB database, and it uses collections and documents.

  12. 12
    Article
    Avatar of logrocketLogRocket·4y

    Prisma vs. Thin Backend

    Prisma enables you to access your database straight from Node.js and TypeScript application code. Thin Backend provides you with an IDE that has custom business logic and serverless functions. Prisma is a type-safe query builder that is an alternative to Sequelize and TypeORM.

  13. 13
    Article
    Avatar of hashnodeHashnode·4y

    Presenting Show Off ✨ - Showcase your setup!

    Show Off is a great place to showcase all the gadgets and software you use and share them with your friends and fans. Add affiliate links to the items and make it easy to earn when the user clicks through your collection. Share & Embed with the unique link that you get for your collection, you can use it to share.

  14. 14
    Article
    Avatar of logrocketLogRocket·4y

    Comparing four popular NestJS ORMs

    Object-relational mapping (ORM) is a technique that abstracts your database tables to data objects in memory. ORMs are used to make database access easier, as developers won’t need to write raw queries. For convenience, NestJS provides tight integrations with TypeORM and Sequelize out of the box.

  15. 15
    Article
    Avatar of communityCommunity Picks·4y

    How to Build a Multi-Tenant App with Custom Domains Using Next.js

    Use the Platforms Starter Kit to kickstart our Next.js project. In this guide, you'll learn how to build a full-stack multi-tenant application with Custom Domains. You'll need to replace all instances of vercel.pub with your own domain to configure rewrites correctly.

  16. 16
    Article
    Avatar of communityCommunity Picks·4y

    Building a NestJS REST API using Prisma ORM

    Prisma is a next-generation Object Relational Mapper (ORM) It takes a somewhat different approach to traditional ORMs. Instead of classes, Prisma uses a special Schema Definition Language. Prisma runs over the schemas and writes the appropriate migrations depending on the chosen database. For our demo NestJS Prisma application, we will be using SQLite as our database.

  17. 17
    Article
    Avatar of asayerasayer·3y

    An Introduction to RedwoodJS

    RedwoodJS is a full-stack serverless web application framework that weaves together the best parts of React, GraphQL, Prisma, TypeScript, Jest, and Storybook. In this tutorial, you’ll learn how to build a Todo App with Redwood JS.