ByteScrum TechnologiesforByteScrum Technologiesblog.bytescrum.com·Oct 8, 2024Understanding Sync vs Migration in NestJS with TypeORM: A Comprehensive GuideWhen working with databases in NestJS and TypeORM, there are two common approaches to managing changes in the database schema: Synchronization (Sync) and Migrations. These two methods help developers align the database structure with the entities in ...Discuss·28 readssync vs migration
Usama waqasusamawaqastechblog.hashnode.dev·Sep 29, 2024What Is TypeORM and How Does It Work?TypeORM is a tool that helps you interact with databases in a simpler way using TypeScript or JavaScript. Instead of writing complex SQL queries, you can use TypeORM to manage your database with easy-to-understand code. Key Points: Entities: Think o...Discusstypeorm
514sid514sid.hashnode.dev·Jul 13, 2024Seamless Telegram Mini App Authentication with React and NestJS: A Step-by-Step GuideIn this article, I will guide you through implementing seamless authentication for your Telegram Mini App using NestJS for the backend and React for the frontend. Source code React app: https://github.com/514sid/tma_auth_client NestJS app: https://gi...Discuss·1.5K readsminiapp
ByteScrum TechnologiesforByteScrum Technologiesblog.bytescrum.com·Jun 28, 2024Building RESTful APIs with NestJSNestJS is a progressive Node.js framework that helps you build efficient and scalable server-side applications. One of its most powerful features is the ability to build robust RESTful APIs with ease. In this guide, we will explore how to create a RE...Discuss·42 likes·68 readsnestjs
Ayoub ToubaforYaffaLabblog.yaffalab.com·Jun 17, 2024Mastering TypeORM: Solutions to Limiting Relation Join and Agregation OperationTypeORM is a powerful Object-Relational Mapping (ORM) library for TypeScript and JavaScript applications. It simplifies the interaction between your application and the underlying database, allowing you to work with entities and relationships instead...Discuss·31 readsyaffalab
Adilforperseidesblog.perseides.org·May 8, 2024Medusa Marketplace #2.3 | Extending Shipping Profiles/OptionsHello everyone! In the last part, we were able to customize the behavior of products on our marketplace, so vendors/users can now create products specific to their store and, of course, see only their own products. What's the goal here ? In this part...Discuss·14 likes·421 readsBuild Your First Marketplace With Medusa.jsmedusa.js
Adilforperseidesblog.perseides.org·May 7, 2024Medusa Marketplace #1 | Let's follow THE recipeHello Everyone,My name is Adil (a.k.aadevinwild), and I'm passionate about Medusa.js. Last year, I embarked on my first (client) project using Medusa.js to build a marketplace. Since then, Medusa has undergone significant improvements, and I believe ...Tewodros Fekede and 3 others are discussing this4 people are discussing thisDiscuss·17 likes·2.2K readsBuild Your First Marketplace With Medusa.jsmedusa.js
Sambhavi Dhanabalanhellosambhavi.com·Mar 14, 2024Capture Typeform responses using Glide APIA quick recap In my previous post we looked at length on creating the most basic version of a Udemy type Glide app. We then created a feedback form using Typeform. As a next step, we invoked an email on a user action in the Glide app that had the Typ...Discuss·61 readsNo Code & Low CodeNo Code
Ayoub ToubaforYaffaLabblog.yaffalab.com·Feb 9, 2024Announcing Version 2.0 of nestjs-DbValidatorWe are excited to unveil version 2.0 of nestjs-DbValidator, a feature-packed module providing custom database validators using class-validator and typeorm for Nest.js applications. This latest release comes with an array of enhancements, new features...Discuss·26 readsnestjs
Chang-Yeol Leecyleemusic.hashnode.dev·Jan 28, 2024Login - 01. Project setupyarn add @nestjs/typeorm typeorm mysql2 docker-compose.yml 설정 // docker-compose-yml version: '3.8' services: mysql: image: mysql:latest container_name: mysql_user-auth restart: always environment: MYSQL_RO...Discussnestjs