일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- TypeScript
- jest
- AWS
- mongoose
- react
- 자료구조
- 공룡게임
- OCR
- Queue
- MySQL
- game
- Nest.js
- JavaScript
- nodejs
- flask
- dfs
- Bull
- Python
- Dinosaur
- nestjs
- Sequelize
- MongoDB
- 게임
- class
- Express
- cookie
- 정렬
- typeORM
- GIT
- Today
- Total
목록분류 전체보기 (651)
포시코딩
npm install xlsx fs import * as fs from 'fs'; import * as XLSX from 'xlsx'; // ... 생략 jsonToExcel(res) { const originalJSON = { "AD": { "name": "Andorra", "phone": "376", "flag": "🇦🇩" }, "AE": { "name": "United Arab Emirates", "phone": "97", "flag": "🇦🇪" }, // ... }; const transformedArray = Object.entries(originalJSON).map(([iso2, country]) => ({ name: country.name, phone: country.phone, iso2: ..
https://yoksel.github.io/url-encoder/ URL-encoder for SVG yoksel.github.io npm i jsbarcode xmldom npm i -D @types/xmldom import { DOMImplementation, XMLSerializer } from 'xmldom'; import JsBarcode from 'jsbarcode'; // ... 생략 private createBarcodeImage(code: string) { const xmlSerializer = new XMLSerializer(); const document = new DOMImplementation().createDocument( 'http://www.w3.org/1999/xhtml'..
https://www.npmjs.com/package/cache-manager cache-manager Cache module for Node.js. Latest version: 5.4.0, last published: 24 days ago. Start using cache-manager in your project by running `npm i cache-manager`. There are 950 other projects in the npm registry using cache-manager. www.npmjs.com https://github.com/nestjs/cache-manager GitHub - nestjs/cache-manager: Cache manager module for Nest f..
Guard import { ExecutionContext, Injectable, UnauthorizedException } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; import { SamlStrategy } from './saml.strategy'; @Injectable() export class SamlAuthGuard extends AuthGuard('saml') { constructor(private readonly samlStrategy: SamlStrategy) { super(); } canActivate(context: ExecutionContext) { const request = context.switchTo..
https://gruuuuu.github.io/security/ssofriends/ 호다닥 공부해보는 SSO와 친구들 (SAML, OAuth, OIDC) Overview 우리는 여러 사이트를 돌아다니면서 내가 “나”임을 증명하기 위해 계정을 만들고 로그인을 하게 됩니다. 예전에는 여러 사이트마다 각자 계정을 만드는 일이 잦았는데 최근엔 대형 회 gruuuuu.github.io
import { Injectable } from '@nestjs/common'; import { PassportStrategy, AuthGuard } from '@nestjs/passport'; import { BearerStrategy } from 'passport-azure-ad'; import { AzureUser } from './user'; const clientID = process.env.AAD_CLIENT_ID; const tenantID = process.env.AAD_TENANT_ID; @Injectable() export class AzureADStrategy extends PassportStrategy(BearerStrategy, 'aad') { constructor() { supe..
SSO란? SSO 로그인 작동 방식 -> SSO 인증 토큰을 통해 SSO 인증 토큰 작동 방식 -> 인증 토큰 표준은 SAML SAML이란? SSO 인증 프로세스 SAML 어설션이란? -> 세 가지 유형 인증 어설션 속성 어설션 권한 부여 결정 어설션 SAML과 OAuth의 차이점 https://learn.microsoft.com/ko-kr/entra/identity-platform/single-sign-on-saml-protocol Single Sign-On SAML 프로토콜 - Microsoft identity platform 이 문서에서는 Microsoft Entra ID에서 SSO(Single Sign-On) SAML 프로토콜을 설명합니다. learn.microsoft.com https://ma..
bun create nest {project_name}
https://jehwanyoo.net/2021/04/06/mac-nginx-tutorial-1-nginx-%EC%84%A4%EC%B9%98/ (mac) NGINX Tutorial #1 - NGINX 설치 해당 튜토리얼를 시작하기 전에 brew 패키지 관리자가 설치되어 있는지 확인해주세요! (링크) NGINX 설치하기1brew install nginx brew를 이용해 NginX를 설치해줍니다. nginx.conf 파일 경로 확인1brew info nginx jehwanyoo.net